How to display title and featured image only when category is chosen

The file you are looking for is content.php. You can find more informations about Template hierarchy here: https://developer.wordpress.org/themes/basics/template-hierarchy/ The sections you have to get rid of are the divs: <div class=”entry-content”> … … </div> <div class=”entry-footer”> … … </div> So you have many ways to achieve it, the simpler is to clone the file in … Read more

Twenty fifteen – Theme background customization

Twenty Fifteen has a hook for you to modify the custom background theme_support arguments (documentation for those arguments here): // Setup the WordPress core custom background feature. add_theme_support( ‘custom-background’, apply_filters( ‘twentyfifteen_custom_background_args’, array( ‘default-color’ => $default_color, ‘default-attachment’ => ‘fixed’, ) ) ); You can implement this filter in your child theme’s functions.php, e.g. function wpse_224240_custom_background_args($args) { … Read more