.editor-styles-wrapper overriding my block styles in Gutenberg

I’m working on my first theme built from custom gutenberg blocks. I’ve managed to register blocks and enqueue their specific stylesheets, but I’m running into one issue that’s kind of a pain. A lot of my blocks override global styles from my style.css file. However, when I enable editor styles, the .editor-styles-wrapper class is superseding … Read more

JetPack Infinite Scroll not working on custom theme

I have a custom theme where I’ve tried to integrate the Infinite Scroll option within JetPack. Per this article, I’ve added the following code to functions.php (in addition to activating the module) – <?php add_theme_support( ‘infinite-scroll’, array( ‘container’ => ‘content’, ‘footer’ => ‘page’, ) ); ?> The live site can be found here. My problem … Read more

Formatting Multiple add_theme_support Arguments

In my functions.php I have the following: add_theme_support( ‘post-thumbnails’, ‘html5’, array( ‘comment-list’, ‘comment-form’, ‘search-form’ ) ); …which in WP 3.8.1 disables e.g. featured image (i.e. post-thumbnails). My question is how to properly format all these support items in the add_theme_support function; is adding two separate function calls right or ‘wrong’? add_theme_support( ‘post-thumbnails’ ); add_theme_support( ‘html5’, … Read more

REQUIRED: The theme must not used the tags. | REQUIRED: The theme must not call to wp_title()

I am getting these three warnings while running the theme-check plugin. REQUIRED: The theme must not used the <title> tags. REQUIRED: The theme must not call to wp_title(). REQUIRED: The <title> tags can only contain a call to wp_title(). Use the wp_title filter to modify the output I am using this in my headers <title></title> … Read more