404 Page not Displaying

If it is not going to your 404.php , then is it redirecting to index.php. a. If it is redirecting to index.php, can you please update the permalink setting and update the .htaccess file with that. b. If the situation still arises can you please try deactivating the plugins one by one and see if … Read more

Custom Post Type Rewrite – Page Not Found

If you are using this in a plugin, from the codex: To get permalinks to work when you activate the plugin use the following example, paying attention to how my_cpt_init is called in the register_activation_hook callback: add_action( ‘init’, ‘my_cpt_init’ ); function my_cpt_init() { register_post_type( … ); } function my_rewrite_flush() { // First, we “add” the … Read more

wp_dropdown_categories links 404

Here is the answer I was looking for. Staring me right in the face. I have managed to fix this issue with a simple addition to the code. &value_field=slug So final code which works and maybe of help in the future. <form action=”<?php bloginfo(‘url’); ?>/” method=”get”> <label for=””>Search.</label> <?php $select = wp_dropdown_categories( ‘taxonomy=YOURTAXONOMY &name=YOURTAXONOMY &show_option_all=Please … Read more