Should I create a child theme for a parent custom theme? [closed]

I would definitely avoid using 2 different wordpress themes and instead code for a more responsive website with CSS mediaqueries. It has worked out very well for me on the WordPress websites I created. If you’re not familiar with media queries, here’s a very basic rundown. HTML — <div class=”box”>hello world</div> CSS — .box { … Read more

How to activate the child theme in WordPress?

All the information you need can be found here: https://codex.wordpress.org/Child_Themes The important parts to get it up and running would be to: Make sure the parent theme exists (the complete accesspress-lite theme in your case) Create a unique folder name for your child theme. Create a style.css file in your child theme folder. /* Theme … Read more

Override typo in multiple parent theme files?

You can override it, but you’ll have to create Child-Theme versions of archive.php, attachment.php, and single.php. Since it’s a translation string, you might be able to do something hackish, like provide a en_US.MO file that translates “Filled under” as “Filed under” (or whatever you want). But that gets tricky – and This Theme appears to … Read more

WordPress sub-posts and permalinks

Pages work this way, so you could either use pages or create a new post type (you’d need the hierarchical => true: function codex_custom_init() { $labels = array( ‘name’ => _x(‘Books’, ‘post type general name’, ‘your_text_domain’), ‘singular_name’ => _x(‘Book’, ‘post type singular name’, ‘your_text_domain’), ‘add_new’ => _x(‘Add New’, ‘book’, ‘your_text_domain’), ‘add_new_item’ => __(‘Add New Book’, … Read more