Remove Site Logo from Homepage in Twenty Twentyone
I am looking for a way not to show the site logo in my homepage (but on all other pages). I can manage … Read more
I am looking for a way not to show the site logo in my homepage (but on all other pages). I can manage … Read more
I am using add_theme_support(‘custom-logo’, array( // The logo will be displayed with the following sizes: ‘width’ => 200, ‘height’ => 200, )); to … Read more
Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be … Read more
I’m adding schema.org markups to my theme’s header, but the theme I’m using is calling the_custom_logo();, and by default it uses ‘logo’ as … Read more
I am switching my Genesis theme over to use WordPress’ 4.5 custom-logo function. It was simple to do: add_theme_support( ‘custom-logo’, array( ‘width’ => … Read more
I’m trying to understand what flex-width/flex-height parameter in custom-logo support does. Here, https://developer.wordpress.org/themes/functionality/custom-logo/ it is said that it defines Whether to allow for … Read more
WordPress 3.8 is out I have the following code to remove admin bar logo. function no_wp_logo_admin_bar_remove() { global $wp_admin_bar; $wp_admin_bar->remove_menu(‘wp-logo’); } add_action(‘wp_before_admin_bar_render’, ‘no_wp_logo_admin_bar_remove’, … Read more
I’m currently working on a theme that enables the user to upload a logo via the customize theme page. I want the user … Read more
I’m trying to change the logo url of the site to “mywebsite.com/side2”, but it is not working, can anyone tell me where is … Read more
I want to make a logo manager in the Customizer, but how do I set different image sizes with the WP_Customize_Cropped_Image_Control class? Example … Read more