[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 wil … [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]
Quality SEO
Quality SEO incorporates a positive user experience, leveraging it to work in a brands favor. Here are some ways to build a great search engine experience and optimize your website to get you ranking first: Onward and Upward By carefully … [Continue reading]