Plugin Directory

Changeset 1343318


Ignore:
Timestamp:
02/04/2016 04:02:33 PM (10 years ago)
Author:
appreciators
Message:

'added shortcode support'

Location:
appreciators/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • appreciators/trunk/appreciators.php

    r1343024 r1343318  
    1111 * Plugin Name:       Appreciators WP Plugin
    1212 * Description:       A WordPress plugin that allows viewers to appreciate and tip content creators
    13  * Version:           0.0.5
     13 * Version:           0.0.6
    1414 * Author:            Appreciators Clique
    1515 * Author URI:        https://appreciators.org
     
    188188
    189189// Enable Appreciators WP Plugin Shortcode
    190 /*function sexy_author_bio_shortcode( $atts ){
     190function appreciators_shortcode( $atts ){
    191191    if ( function_exists( 'get_Appreciators' ) ) {
    192192        return get_Appreciators();
    193193    }
    194194}
    195 add_shortcode( 'appreciators', 'appreciators_shortcode' );
     195add_shortcode( 'appreciate-author', 'appreciators_shortcode' );
    196196add_filter('widget_text', 'do_shortcode');
    197 */
     197
    198198
    199199// Add settings link on plugin page
  • appreciators/trunk/readme.txt

    r1343024 r1343318  
    44Requires at least: 4.3
    55Tested up to: 4.4.2
    6 Stable tag: 0.0.5
     6Stable tag: 0.0.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040* You can view a live demo of Appreciators WP Plugin on a blog article here: https://appreciators.org/blog/is-a-founders-journey-a-coin-toss/
    4141
     42= Appreciate Author Widget Shortcode =
     43
     44If your theme doesn't show the Appreciate Author widget automatically, you can add it manually using this shortcode:
     45
     46`
     47[appreciate-author]
     48`
    4249
    4350== Installation ==
     
    6774== Changelog ==
    6875
     76= 0.0.6 05-Feb-2016 =
     77
     78* Added shortcode support
     79
    6980= 0.0.5 04-Feb-2016 =
    7081
Note: See TracChangeset for help on using the changeset viewer.