Share parent path between Custom Post Types and Pages?

Here’s my situation: I have a custom post type I created called “professions” with three professions (“military”, “firefighters”, “law-enforcement”). I created a page single-professions.php to use as the post page. I set the slug to “heroes” in my register_post_type function: ‘rewrite’ => array( ‘slug’ => ‘heroes’, ‘with_front’ => false ) Here are the full options … Read more

Duplicate Category and Page URL loads Category instead of the Page

I have created a Category with the slug service, which has the permalink: https://example.com/service. and a Page with the link: https://example.com/service. In the Category service, there is a post with the link like: https://example.com/service/post1 Now the link https://example.com/service is redirecting to the Category Archive, but I want it to load the Page instead. How can … Read more

How to change the permalink structure of a master page?

Links on the page I use are progressing as follows: http://example.com/image/1 The code I use for Functions.php add_action( ‘init’, ‘wpse316713_pagination_base_rewrite_rule’ ); function wpse316713_pagination_base_rewrite_rule() { global $wp_rewrite; $wp_rewrite->pagination_base=”image”; } Reference link: How to change the link structure of the homepage? What I’m trying to do is remove the “image” base. How can we change it to … Read more

Making pages also serve as taxonomies? Or give full pages to taxonomies?

I run a video game news blog. When my staff writes a news article or a review, I would like them to be able to “assign” that post to a game (if applicable), so then I could have the single.php template call information on that game (title, boxart, publisher, release date, etc.) and display it … Read more

Is there any WordPress alternative to Book module of Drupal?

WordPress can be used as CMS. So, I think I can switch from Drupal to WordPress. I’m looking for a book module alternative for creating structured document. If you don’t know about Book module of Drupal, follow this link: http://drupal.org/documentation/modules/book It simply put all page links in navigational block maintaining the hierarchical sequence. Plus, it … Read more