There have a filter hook “starter_admin_menu” for admin menu. You’ll just drop the following code in your custom-starter/custom-functions.php file and see the magic. Snippet //* Change Default Menu with Site Name add_filter( ‘starter_admin_menu’, ‘gd_admin_menu’ ); function gd_admin_menu( $menu ) { return __( ‘Genesis Developer’, ‘starter’ ); } After adding the following code I am getting… Continue Reading
Archives for March 2016
Showing limited amount of categories on post meta
Original Message: I am trying to find a way to limit the amount of categories the Filed Under: Genesis shortcode outputs. Is there a way to do this? For example if a post belongs to 10 other categories it current displays every category, is there a way to limit it to only list x amount… Continue Reading
Remove H1 from home site title
Here have a handy solution for non-technical Genesis users. Just drop this single line of code in your functions.php file and see the magic. //* Removing the H1 tag from home site title add_filter( ‘genesis_pre_get_option_home_h1_on’, ‘__return_true’ );