- This topic has 1 reply, 2 voices, and was last updated 2 years, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Free and Premium WordPress Plugins & Themes Forums WordPress Plugins Hotel Booking Deactivate single post
Hi All,
I’d like to deactivate single pages like Services. How can I proceed ?
Thanks,
Bernard
Hi Bernard,
Thanks for your question. You may override the Services post type to disable the front-end view for single Service posts. Try to add the code below to the functions.php file of your theme:
function theme_disable_fronend_mphb_room_service( $args, $post_type ) {
if ( 'mphb_room_service' === $post_type ) {
$args['publicly_queryable'] = false;
}
return $args;
}
add_filter( 'register_post_type_args', 'theme_disable_fronend_mphb_room_service', 10, 2 );
best regards,
J. Davis
This website uses cookies
By clicking “Accept All”, you agree that we can store cookies on your device and disclose information in accordance with our Cookie Policy
Necessary Cookies
These cookies are essential for website functionality and cannot be disabled.
Advertising
These cookies, set by us and our advertising partners, aim to give you useful content and measure how well it works.
Analytics
These cookies help us improve performance by tracking user interactions on our website.