Create a folder in local hard disk drive (e.g. FolderSync) which to be linked to the USB drive or network drive. In SugarSync client program (previously known as SugarSync Manager), add the local folder as a folder to sync to the cloud. After the … [Continue reading]
Remove All in one seo from posts for non admin
[php] add_filter( 'aioseop_add_post_metabox', 'sfwd_aioseop_hide_metaboxes', 11 ); function sfwd_aioseop_hide_metaboxes( $metaboxes ) { if ( current_user_can( 'author' ) || current_user_can( 'contributor' ) ) return Array(); return … [Continue reading]
Change Genesis Reponsive Slider to allow multiple slideshows
Out of the box, the Genesis Responsive Slider can only be used in one way on your site because it’s options are set in an options panel. However, you can hook in to every setting, to create different sliders on different pages (although this code … [Continue reading]
Allow editors to edit menus
add this to your theme's functions.php: [php]// add editor the privilege to edit theme // get the the role object $role_object = get_role( 'editor' ); // add $cap capability to this role object $role_object->add_cap( … [Continue reading]
Tags list on phpmyadmin
If you want to display a complete list of the tags used in a wordpress blog, you can retrive this from phpmyadmin using the following query with "wp_" table prefix (the default) [php] ELECT wp_terms.`term_id` AS TagID, wp_terms.`name` AS TagName, … [Continue reading]
- « Previous Page
- 1
- …
- 15
- 16
- 17
- 18
- 19
- 20
- Next Page »