.nav-primary .wrap .small-site-title a img { width: 74px; } … [Read more...] about Cafe Pro – Adjust width of the logo in the primary navigation
Archive of Code Snippets
Cafe Pro – Replacing site title with image logo in primary navigation
// Surrounding code not shown. $output = sprintf( '', trailingslashit( home_url() ), get_bloginfo( 'name' ) ); … [Read more...] about Cafe Pro – Replacing site title with image logo in primary navigation
Cafe Pro – Adding site title and link to homepage in functions.php
// Surrounding code not shown. $output = sprintf( '%s', trailingslashit( home_url() ), get_bloginfo( 'name' ) ); … [Read more...] about Cafe Pro – Adding site title and link to homepage in functions.php
Remove Featured Image from the homepage of Smart Passive Income Pro
//* Remove default Genesis featured image remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 ); add_action( 'genesis_before_entry', 'ch_remove_featured_image_on_home_or_front_page'); function ch_remove_featured_image_on_home_or_front_page() { if ( is_home() || is_front_page() ) { return; } add_action( 'genesis_entry_content', … [Read more...] about Remove Featured Image from the homepage of Smart Passive Income Pro
Featured Image in functions.php of Smart Passive Income Pro
//* Remove default Genesis featured image remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 ); add_action( 'genesis_entry_content', 'genesis_do_post_image', 1 ); … [Read more...] about Featured Image in functions.php of Smart Passive Income Pro