Changeset 834818
- Timestamp:
- 01/08/2014 09:40:16 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-basics/trunk/admin/functions/functions.options.php
r834805 r834818 115 115 116 116 $of_options[] = array( "id" => "breadcrumbs_info", 117 "std" => "You can add breadcrumbs anywhere on your blog by calling function directly. Put the next code in the template you want: </br> <?php if ( function_exists( 'wb_breadcrumbs' ) ) { echo wb_breadcrumbs(); } ?>",117 "std" => "You can add breadcrumbs anywhere on your blog by calling function directly. Put the next code in the template you want: </br> if ( function_exists( 'wb_breadcrumbs' ) ) { echo wb_breadcrumbs(); }", 118 118 "icon" => true, 119 119 "type" => "info" … … 203 203 204 204 $of_options[] = array( "id" => "pagination_info", 205 "std" => "You can add pagination anywhere on your post by calling function directly. Put the next code in the template you want: </br> <?php if ( function_exists( 'wb_pagination' ) ) { echo wb_pagination(); } ?>",205 "std" => "You can add pagination anywhere on your post by calling function directly. Put the next code in the template you want: </br> if ( function_exists( 'wb_pagination' ) ) { echo wb_pagination(); } ", 206 206 "icon" => true, 207 207 "type" => "info" … … 276 276 277 277 $of_options[] = array( "id" => "pagination_info", 278 "std" => "You can add pagination anywhere on your post by calling function directly. Put the next code in the template you want: </br> <?php if ( function_exists( 'wb_post_pagination' ) ) { echo wb_post_pagination(); } ?>",278 "std" => "You can add pagination anywhere on your post by calling function directly. Put the next code in the template you want: </br> if ( function_exists( 'wb_post_pagination' ) ) { echo wb_post_pagination(); }", 279 279 "icon" => true, 280 280 "type" => "info" … … 321 321 322 322 $of_options[] = array( "id" => "related_content_info", 323 "std" => "You can add related content anywhere on your post by calling function directly. Put the next code in the template you want: </br> <?php if ( function_exists( 'wb_related_content' ) ) { echo wb_related_content(); } ?>",323 "std" => "You can add related content anywhere on your post by calling function directly. Put the next code in the template you want: </br> if ( function_exists( 'wb_related_content' ) ) { echo wb_related_content(); }", 324 324 "icon" => true, 325 325 "type" => "info" … … 352 352 353 353 $of_options[] = array( "id" => "author_info", 354 "std" => "You can add author info anywhere on your post by calling function directly. Put the next code in the template you want: </br> <?php if ( function_exists( 'wb_author_info' ) ) { echo wb_author_info(); } ?>",354 "std" => "You can add author info anywhere on your post by calling function directly. Put the next code in the template you want: </br> if ( function_exists( 'wb_author_info' ) ) { echo wb_author_info(); }", 355 355 "icon" => true, 356 356 "type" => "info" … … 406 406 407 407 $of_options[] = array( "id" => "social_sharing_info", 408 "std" => "You can add social sharing buttons anywhere on your blog by calling function directly. Put the next code in the template you want: </br> <?php if ( function_exists( 'wb_social_sharing' ) ) { echo wb_social_sharing(); } ?>",408 "std" => "You can add social sharing buttons anywhere on your blog by calling function directly. Put the next code in the template you want: </br> if ( function_exists( 'wb_social_sharing' ) ) { echo wb_social_sharing(); }", 409 409 "icon" => true, 410 410 "type" => "info"
Note: See TracChangeset
for help on using the changeset viewer.