Redirect single pages of post type in to post type archive page - WordPress
In WordPress, if our post type is public, in default, a single page view will be available for all posts in that post type.
If we don’t need a single view of post type, it is better to make post type, not as public. In register_post_type
hook, there is an argument called public
& we have to set that value as false.
But now I need to make one of my custom post types as public & the same time, I need to remove the single page view of that custom post type. Below you can find the code snippet that I have used for that purpose.
add_action( 'template_redirect', function() {
$post_type = 'board_member';
if ( is_singular($post_type) ) {
global $post;
$redirectLink = get_post_type_archive_link( $post_type );
wp_redirect( $redirectLink, 302 );
exit;
}
});
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.