Plugin Directory

Changeset 834840


Ignore:
Timestamp:
01/08/2014 10:23:14 AM (12 years ago)
Author:
laura20
Message:

v1.5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-basics/trunk/readme.txt

    r834835 r834840  
    11=== WP-Basics ===
     2
    23Contributors: laura20
     4
    35Donate link: http://www.codetocode-developments.com/wp-plugins/wp-basics-documentation/
     6
    47Tags: breadcrumbs, pagination, related content, author info, author biography, social sharing, social networks, like button
     8
    59Requires at least: 3.0
     10
    611Tested up to: 3.8
     12
    713Stable tag: 1.5
     14
    815License: GPLv2
     16
    917
    1018License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1119
     20
     21
    1222Adds basic functionalities to your blog.
     23
     24
     25
    1326
    1427== Description ==
    1528
     29
     30
    1631This plugin adds six functionalities that all blogs should have:
    1732
     33
    1834*   Breadcrumbs
     35
    1936*   Pagination
     37
    2038*   Post pagination
     39
    2140*   Related content after posts
     41
    2242*   Author info after posts
     43
    2344*   Social sharing buttons after posts
    2445
     46
     47
    2548You can turn on / off each functionality in one click or add it manually.
     49
    2650You will find an advanced setting page for easy customization on the wordpress menu.
     51
     52
     53
    2754
    2855
    2956== Installation ==
    3057
     58
     59
    31601. Upload `WP-Basics` directory to the `/wp-content/plugins/` directory
     61
    32622. Activate the plugin through the 'Plugins' menu in WordPress
     63
    33643. Go to WP-Basics menu to activate and configure the plugin
     65
     66
     67
    3468
    3569
    3670== Frequently Asked Questions ==
    3771
     72
     73
    3874= How can i use this functionalities to other site of my blog? =
    3975
    40 You can add each functionality anywhere on your blog by calling functions directly. You will need some wordpress
     76
     77You can add each functionality anywhere on your blog by calling functions directly.
     78You will need some wordpress
    4179knowledge to do this.
    4280
     81
     82
    4383*   Breadcrumb: if ( function_exists( 'wb_breadcrumbs' ) ) { echo wb_breadcrumbs(); }
     84
    4485*   Pagination: if ( function_exists( 'wb_pagination' ) ) { echo wb_pagination(); }
    4586*   Post pagination: if ( function_exists( 'wb_post_pagination' ) ) { echo wb_post_pagination(); }
     87
    4688*   Related content: if ( function_exists( 'wb_related_content' ) ) { echo wb_related_content(); }
     89
    4790*   Author info: if ( function_exists( 'wb_author_info' ) ) { echo wb_author_info(); }
     91
    4892*   Social sharing: if ( function_exists( 'wb_social_sharing' ) ) { echo wb_social_sharing(); }
     93
     94
    4995
    5096If you do it, deactivate the function in the option panel. The other options will still work,
     
    5298
    5399
     100
     101
     102
    54103== Screenshots ==
     104
     105
    55106
    561071. Options panel.
    57108
    58109
     110
     111
     112
    59113== Changelog ==
    60114
     115
     116
    61117= 1.5 =
     118
    62119*Added new images to option menu
     120
    63121*Added global pagination function
    64122
     123
     124
    65125= 1.0 =
     126
    66127First release
     128
     129
    67130
    68131== Upgrade Notice ==
    69132
     133
     134
    70135= 1.5 =
     136
    71137Upgrade to enjoy new features.
    72138
     139
     140
    73141= 1.0 =
     142
    74143Upgrade WP-Basics for good maintenance.
    75144
Note: See TracChangeset for help on using the changeset viewer.