Child theme Page Template not loading

I fixed the problem by adding my parent’s index,page, and header.php to my child theme’s folder. If you’re not able to change the blog page template. Remove the page from the Settings > Reading, change the template and select your blog post again.

100% width Featured Image Size

Ack, nevermind I just discovered that using get_the_post_thumbnail( $post_id, ‘full’ ); // Original resolution will use the width and height of the featured image. I do apologize for wasting everyone’s time. I should have been a little more patient 😉

Problem after renaming wordpress template file

If you have WP-CLI installed, try to run wp cache flush or you can put this code into your functions.php function fix_template_caching( WP_Screen $current_screen ) { if ( ! in_array( $current_screen->base, array( ‘post’, ‘edit’, ‘theme-editor’ ), true ) ) { return; } $theme = wp_get_theme(); if ( ! $theme ) { return; } $cache_hash = … Read more

Customize “Continue Reading” text [closed]

The solution (or problem) is not limited to the 2017 theme. This is something you can add to any theme. Since it involves changing the functions.php file, you should first make a Child Theme of the 2017 theme. (Ask the googles how to do that….and why you would use a Child Theme rather than changing … Read more

Child theme not using parent theme css/styles/formatting?

The theme you’re trying to use as a parent, Grow Minimal, is a child theme of the Grow theme. It’s not possible to create a child theme of another child theme without writing custom code workarounds. In your code, these two lines just do the same thing twice: wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_style(‘thinkup-style’, … Read more