Changeset 834840
- Timestamp:
- 01/08/2014 10:23:14 AM (12 years ago)
- File:
-
- 1 edited
-
wp-basics/trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-basics/trunk/readme.txt
r834835 r834840 1 1 === WP-Basics === 2 2 3 Contributors: laura20 4 3 5 Donate link: http://www.codetocode-developments.com/wp-plugins/wp-basics-documentation/ 6 4 7 Tags: breadcrumbs, pagination, related content, author info, author biography, social sharing, social networks, like button 8 5 9 Requires at least: 3.0 10 6 11 Tested up to: 3.8 12 7 13 Stable tag: 1.5 14 8 15 License: GPLv2 16 9 17 10 18 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 19 20 21 12 22 Adds basic functionalities to your blog. 23 24 25 13 26 14 27 == Description == 15 28 29 30 16 31 This plugin adds six functionalities that all blogs should have: 17 32 33 18 34 * Breadcrumbs 35 19 36 * Pagination 37 20 38 * Post pagination 39 21 40 * Related content after posts 41 22 42 * Author info after posts 43 23 44 * Social sharing buttons after posts 24 45 46 47 25 48 You can turn on / off each functionality in one click or add it manually. 49 26 50 You will find an advanced setting page for easy customization on the wordpress menu. 51 52 53 27 54 28 55 29 56 == Installation == 30 57 58 59 31 60 1. Upload `WP-Basics` directory to the `/wp-content/plugins/` directory 61 32 62 2. Activate the plugin through the 'Plugins' menu in WordPress 63 33 64 3. Go to WP-Basics menu to activate and configure the plugin 65 66 67 34 68 35 69 36 70 == Frequently Asked Questions == 37 71 72 73 38 74 = How can i use this functionalities to other site of my blog? = 39 75 40 You can add each functionality anywhere on your blog by calling functions directly. You will need some wordpress 76 77 You can add each functionality anywhere on your blog by calling functions directly. 78 You will need some wordpress 41 79 knowledge to do this. 42 80 81 82 43 83 * Breadcrumb: if ( function_exists( 'wb_breadcrumbs' ) ) { echo wb_breadcrumbs(); } 84 44 85 * Pagination: if ( function_exists( 'wb_pagination' ) ) { echo wb_pagination(); } 45 86 * Post pagination: if ( function_exists( 'wb_post_pagination' ) ) { echo wb_post_pagination(); } 87 46 88 * Related content: if ( function_exists( 'wb_related_content' ) ) { echo wb_related_content(); } 89 47 90 * Author info: if ( function_exists( 'wb_author_info' ) ) { echo wb_author_info(); } 91 48 92 * Social sharing: if ( function_exists( 'wb_social_sharing' ) ) { echo wb_social_sharing(); } 93 94 49 95 50 96 If you do it, deactivate the function in the option panel. The other options will still work, … … 52 98 53 99 100 101 102 54 103 == Screenshots == 104 105 55 106 56 107 1. Options panel. 57 108 58 109 110 111 112 59 113 == Changelog == 60 114 115 116 61 117 = 1.5 = 118 62 119 *Added new images to option menu 120 63 121 *Added global pagination function 64 122 123 124 65 125 = 1.0 = 126 66 127 First release 128 129 67 130 68 131 == Upgrade Notice == 69 132 133 134 70 135 = 1.5 = 136 71 137 Upgrade to enjoy new features. 72 138 139 140 73 141 = 1.0 = 142 74 143 Upgrade WP-Basics for good maintenance. 75 144
Note: See TracChangeset
for help on using the changeset viewer.