Adding a title below the logo

You will have to customize the header.php of your theme (from Appearancece > Editor), I recommend you create a child theme first and then find #logo within the header.php and add the title below the logo. I cannot show you exactly how since I don’t know the header.php of your theme, but after you find … Read more

Remove the first 5 characters of the_title and orderby that

WordPress WP_Query’s orderby parameter has a lot of options but nothing as specific as what you are after. I think you’d have to do this after retrieving posts through the WP_Query, then sort them using usort(). Your code should be something like this. $args = array( ‘post_type’ => ‘z_day’, ‘posts_per_page’ => -1, ‘meta_query’ => array( … Read more