by lookhappy | Jul 1, 2022 | News
I’m currently running a Kickstarter campaign to collect some of my short comics into a book! It’s currently 172% funded and I’d love to reach another stretch goal if possible. Have a...
by lookhappy | Jan 25, 2019 | News
After much searching and fiddling I finally found a solution to this problem… Basically I have a site where some top level items in the main menu are purely for categorization; they don’t have actual pages to link to. So how do we prevent them from...
by lookhappy | Jul 26, 2017 | News, Work
So I was trying to figure out how to redirect from a category page in WordPress to another page. It’s not too hard. To do it manually I just used the following: function my_page_template_redirect() { if ( is_category( 'zero-emission-transport' ) ) { $url =...
by lookhappy | Mar 21, 2017 | News
The tax man comes’a’knocking, every year. Relentless and uncaring. Kind of like the Groke. It’s pretty boring but vital for every self-employed person to be somewhat aware of what’s required and what’s to come. I have just a few tips that...
by lookhappy | Nov 30, 2016 | Comics
Here’s a little bit of code to display WordPress Childpages in an undordered list including their thumbnail image. <ul class="sub_pages"> <?php $args = array( 'post_parent' => $post->ID, 'post_type' =>...