Hide category page

Posted in: Newsmag
Post count: 10

Hello,

I’m creating a category page, important only for me (admin). So I don’t want to show it to my users. It’s possible to hide it in the frontend?

Thanks in advance.

Post count: 6535

Hi

You can set a redirect link for that category using this code: http://screencast.com/t/UXUdvgvE

if (!current_user_can('publish_posts')) {
if (is_category('cat-slug/id')) {
wp_redirect(home_url());
}
}

Just add category slug or id in indicated condition and any user which will attempt to access the page will be redirected to home.

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newsmag’ is closed to new topics and replies.