godaddy/wp-contact-widgets 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

godaddy/wp-contact-widgets

Composer 安装命令:

composer require godaddy/wp-contact-widgets

包简介

Beautifully display social media and contact information on your website with these simple widgets.

README 文档

README

Banner Image

Contributors: godaddy, jonathanbardo, fjarrett, eherman24
Tags: widget, contact, social, [social icons](https://wordpress.org/plugins/tags/social icons/), [social media](https://wordpress.org/plugins/tags/social media/), facebook, twitter, instagram, linkedin, pinterest
Requires at least: 4.4
Tested up to: 5.7
Stable tag: 1.6.2
License: GPL-2.0
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Beautifully display social media and contact information on your website with these simple widgets.

Build Status License PHP >= 5.4 WordPress >= 4.4

Description

Note: This plugin requires PHP 5.4 or higher

Beautifully display social media and contact information on your website with simple, easy-to-use widgets.

Play video on YouTube

Contact Information

Display your contact information including email address, phone number, fax and physical address (including a map).

Social Media Profiles

Display your social media profiles in an attractive, intuitive way.

30 Languages Supported

English - Dansk - Deutsch - Ελληνικά - Español - Español de México - Suomi - Français - हिन्दी - Bahasa Indonesia - Italiano - 日本語 - 한국어 - मराठी - Bahasa Melayu - Norsk bokmål - Nederlands - Polski - Português do Brasil - Português - Русский - Svenska - ไทย - Tagalog - Türkçe - Українська - Tiếng Việt - 简体中文 - 香港中文版 - 繁體中文

Support

If you run into a problem, post your question in the plugin support forum and we would be happy to help. Remember, the more information you can provide up-front, the easier it is for us to verify the problem and the faster we can help!

  • Screenshot(s) - How-to guide
  • Name and version of your theme - Video tutorial
  • List of all active plugins on your site - Video tutorial
  • Steps taken or details we should know to reproduce and verify the problem

Contributing

Development of this plugin is done on GitHub. If you believe you have found a bug, or have a killer feature idea, please open a new issue there. Pull requests on existing issues are also welcome!

Screenshots

  1. Contact widget
  2. Social widget
  3. Twenty Sixteen theme showing both widgets
  4. Social widget block settings and icons
  5. Contact widget block settings
  6. Contact widget block rendered

Frequently Asked Questions

How do I add additional fields to the Contact Information widget?

Adding additional fields to the Contact Information widget is as simple as adding a WordPress filter.

Here is an example:

add_filter( 'wpcw_widget_contact_custom_fields', function ( $wpcw_fields, $instance ) {

  $wpcw_fields['cellphone'] = [
    'order'       => 2,
    'label'       => __( 'Cellphone:', 'YOURTEXTDOMAIN' ),
    'type'        => 'text',
    'description' => __( 'A cellphone number that website visitors can call if they have questions.', 'YOURTEXTDOMAIN' ),
  ];

  return $wpcw_fields;

}, 10, 2 );

How do I add additional fields to the Social Media Profiles widget?

The Social Media Profiles widget requires a different set of options but follows the same principle as above.

Here is an example:

add_filter( 'wpcw_widget_social_custom_fields', function ( $wpcw_fields, $instance ) {

  $wpcw_fields['scribd'] = [
    'icon'      => 'scribd', // See font-awesome icon slug
    'label'     => __( 'Scribd', 'YOURTEXTDOMAIN' ),
    'default'   => 'https://www.scribd.com/username',
    'select'    => 'username',
    'sanitizer' => 'esc_url_raw',
    'escaper'   => 'esc_url',
    'social'    => true,
    'target'    => '_blank',
  ];

  return $wpcw_fields;

}, 10, 2 );

If using Font Awesome v5, 'solid' & 'regular' icons require a 'prefix' value when defining the custom icon. If excluded, the default prefix added to icons is 'fab', for the Font Awesome brand icons. If you are adding an icon that is not a brand icon, you will need to add a prefix. For example, if you wanted to add a graduation cap icon you would need to add 'prefix' => 'fas' to the attributes array.

Here is an example of adding a 'fas' (Solid) icon to the social profiles.

add_filter( 'wpcw_widget_social_custom_fields', function ( $wpcw_fields, $instance ) {

  $wpcw_fields['lattes'] = [
    'icon'      => 'graduation-cap', // See font-awesome icon slug
    'prefix'    => 'fas', // See font-awesome icon prefix
    'label'     => __( 'Service Name', 'YOURTEXTDOMAIN' ),
    'default'   => 'https://example.com/username',
    'select'    => 'username',
    'sanitizer' => 'esc_url_raw',
    'escaper'   => 'esc_url',
    'social'    => true,
    'target'    => '_blank',
  ];

  return $wpcw_fields;

}, 10, 2 );

Where are the Font Awesome files served from?

Out of the box the Font Awesome files are bundled in Contact Widgets and served locally. However, we have included a filter to allow Font Awesome files to be loaded from MaxCDN.

To force the plugin to load the files from MaxCDN you can return a true value in the filter wpcw_social_icons_use_cdn.

add_filter( 'wpcw_social_icons_use_cdn', '__return_true' );

Changelog

1.7.0 - February 20th, 2018

  • Fix: WordPress 5.3 compatibility fixes. (Replaced $ in favor of jQuery)
  • Tweak: Removed all references of PHP array shorthand syntax. (Replaced [] in favor of array())

1.6.2 - February 20th, 2018

  • Tweak: Adjust the contact block dependencies.

1.6.1 - December 9th, 2018

  • Tweak: URI Encode the contact map address.

Props @EvanHerman

1.6.0 - December 6th, 2018

  • New: Introduce Contact Details block.
  • New: Introduce Social Profiles block.

Props @EvanHerman

1.5.2 - June 18, 2018

  • New: Introduce filter wpcw_social_icons_fontawesome_5 (default: false) to use Font Awesome 5 in Contact Widgets.
  • New: Introduce filter wpcw_social_icons_use_cdn (default: false) to load Font Awesome v4.7.0 files from MaxCDN.
  • New: Introduce filter wpcw_social_icons_cdn_url to alter the default Font Awesome CDN URL.
  • Tweak: Revert back to Font Awesome 4.7.0 with the option to force load Font Awesome v5.0.13 via filter (see above).

Props @EvanHerman

1.5.1 - June 14, 2018

  • Tweak: Added a Font Awesome 5 config file with showMissingIcons set to false, to prevent conflicts with plugins and themes using Font Awesome v4.
  • Tweak: Filter the social profile fields array before localizing into admin.js, fixing custom social profile icons.

Props @EvanHerman

1.5.0 - May 31, 2018

  • New: Add support for "Unsplash" (https://unsplash.com/)
  • Tweak: Update FontAwesome to 5.0.6
  • Tweak: Fix typo in widget descriptions.

Props @EvanHerman, @fjarrett, @salvoventura, @garrett-eclipse

1.4.1 - February 13, 2017

  • Tweak: Use FontAwesome 4.7.0
  • Fix: Compatibility issues when other plugins add widget form fields

Props @jonathanbardo, @fjarrett

1.4.0 - January 10, 2017

  • New: WordPress 4.7 compatibility
  • New: Defer map iframe loading by default
  • Tweak: Remove frameborder from map iframes
  • Tweak: Add filter to change zoom level of map
  • Tweak: Deprecate YouTube link while maintaining backward compatibility

Props @fjarrett, @jonathanbardo, @EvanHerman

1.3.3 - October 14, 2016

  • Tweak: Remove edit button during Customize preview
  • Fix: Minor bugs

Props @jonathanbardo

1.3.2 - August 16, 2016

  • New: WordPress 4.6 compatibility
  • New: Add RSS to social networks
  • Tweak: Plugin icon update
  • Tweak: Update translation
  • Fix: Edit button not working

Props @jonathanbardo, @fjarrett

1.3.1 - June 3, 2016

  • New: Language support for Marathi
  • New: Add 500px to social networks

Props @jonathanbardo, @fjarrett, @salvoventura

1.3.0 - May 19, 2016

  • New: Add front-end "Edit" link to quickly edit widgets in the Customizer
  • Fix: Use WP-CLI nightlies in tests

Props @jonathanbardo, @fjarrett

1.2.0 - April 12, 2016

  • New: WordPress 4.5 compatibility
  • Tweak: Improve widget names

Props @jonathanbardo, @fjarrett

1.1.0 - March 15, 2016

  • New: Support localization on Google Maps

Props @jonathanbardo, @fjarrett

1.0.4 - March 9, 2016

  • Tweak: Language updates

Props @jonathanbardo

1.0.2 - February 24, 2016

  • New: Language support for 27 locales

Props @jonathanbardo

1.0.1 - February 24, 2016

  • New: Added possibility to add custom fields to contact and social widget

Props @jonathanbardo

1.0.0 - February 23, 2016

  • Initial release

Props @jonathanbardo, @fjarrett

godaddy/wp-contact-widgets 适用场景与选型建议

godaddy/wp-contact-widgets 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16 次下载、GitHub Stars 达 15, 最近一次更新时间为 2016 年 06 月 09 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 godaddy/wp-contact-widgets 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 godaddy/wp-contact-widgets 我们能提供哪些服务?
定制开发 / 二次开发

基于 godaddy/wp-contact-widgets 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 16
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 15
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 15
  • Watchers: 17
  • Forks: 16
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-2.0
  • 更新时间: 2016-06-09