Template Hierarchy for get_header()
I’m considering having different headers depending on the area of the site. So thought it might be possible to tap into the template … Read more
I’m considering having different headers depending on the area of the site. So thought it might be possible to tap into the template … Read more
I watched a lot of courses about WordPress Development on Udemy. Also I’ve almost finished my “WordPress Development” track on Teamtreehouse, but I … Read more
I’ve encountered a strange error while developing a custom theme. After finishing editing the template for a custom post type single view, I … Read more
Been trying to get a nest of custom post type and taxonomy working (even took a look here) but couldn’t get it working … Read more
On the home.php, which is in the same folder where style.css is kept I am try to call a template: <?php get_template_part( ‘template-parts/content’, … Read more
I currently have a global function in my functions.php file ein_error_log($message) { //push out $message to file… } But I want to start … Read more
Hello StackExchange WP_development 🙂 I am in a bit of a pickle with this one and i certainly hope you can consult me … Read more
Created my first custom theme from scratch and I’m trying to do a listing of all posts with the same tag. In tag.php … Read more
Some themes that I have seen such as the (famous) thesis or even a few other not so famous themes have just an … Read more
I am creating a video-archive page for all the posts_format with video. Currently, I have: <?php $format = has_post_format(‘video’, $post_id); ?> <?php if($layout … Read more