Changeset 2549472
- Timestamp:
- 06/17/2021 06:49:26 AM (5 years ago)
- Location:
- iaf-social-share/trunk
- Files:
-
- 3 edited
-
iaf-social-share.php (modified) (3 diffs)
-
inc/admin/sidebar-box.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iaf-social-share/trunk/iaf-social-share.php
r2549322 r2549472 2 2 /* 3 3 * Plugin Name: IAF Social Share 4 * Description: A simple plugin to share articles and pages onsocial media including Whatsapp.4 * Description: A simple plugin to share articles, pages and any other post types on the most commonly used social media including Whatsapp. 5 5 * Author: Fotso Fonkam 6 6 * Author URI: http://www.iamfotso.cm/a-propos/ 7 * Version: 1. 07 * Version: 1.1.1 8 8 * Licence: GPL2+ 9 9 * Text Domain: iaf-social-share … … 15 15 // INCLUDES 16 16 include( 'inc/activate.php' ); 17 include( 'inc/deactivate.php' );18 17 include( 'inc/enqueue.php' ); 19 18 include( 'inc/admin/menu.php' ); … … 25 24 // HOOKS 26 25 register_activation_hook( __FILE__, 'iaf_activate_plugin' ); 27 register_deactivation_hook( __FILE__, 'iaf_deactivate_plugin' );28 26 add_action( 'wp_enqueue_scripts', 'iaf_enqueue' ); 29 27 add_action( 'admin_enqueue_scripts', 'iaf_admin_enqueue' ); -
iaf-social-share/trunk/inc/admin/sidebar-box.php
r2549322 r2549472 44 44 45 45 <?php 46 $iaf_cpts = get_post_types( array( '_builtin' => false ), 'objects' ); 47 46 $args = [ 47 'public' => true, 48 '_builtin' => false, 49 ]; 50 $iaf_cpts = get_post_types( $args, 'objects' ); 51 48 52 foreach( $iaf_cpts as $cpt ) { 49 53 ?> -
iaf-social-share/trunk/readme.txt
r2549322 r2549472 5 5 Requires PHP: 5.2.4 6 6 Tested up to: 5.7 7 Stable tag: 1.1 7 Stable tag: 1.1.1 8 8 License: GPL2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 13 13 == Description == 14 Easily share your content (posts and articles) on several social media, namely Facebook, Twitter, LinkedIn, Telegram and WhatsApp. You have the possibility to customize the buttons (choose the colour, position, skin etc.) so that they match as much as possible your design. You can also decide whether the icon or text will appear or not. Decide how the buttons will look like on mobile devices.14 Easily share your content (posts, articles and any public custom post type) on several social media, namely Facebook, Twitter, LinkedIn, Telegram and WhatsApp. You have the possibility to customize the buttons (choose the colour, position, skin etc.) so that they match as much as possible your design. You can also decide whether the icon or text will appear or not. Decide how the buttons will look like on mobile devices. 15 15 16 16 == Installation == … … 33 33 = 1.1 = 34 34 * Share buttons can be added to custom post types 35 36 = 1.1.1 = 37 * Restriction added : only public custom post types will appear in the settings form
Note: See TracChangeset
for help on using the changeset viewer.