• WP hide Post

    My ‘Hide Feed’ option would work for me (an admin) when I used it, but it wouldn’t work for my editor’s or Authors.

    Here’s my fix, I know nothing about code, but this seemed to have worked for me.

    replaced:
    function wphp_is_feed() {
    return is_feed();

    With:
    function wphp_is_feed() {
    return !wphp_is_front_page() && !wphp_is_feed() && is_feed();

    Hope it works for you, thought I’d post my solution since this app seems to have been abandoned

    https://wordpress.org/plugins/wp-hide-post/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Fixing 'hide feed' for non-admins’ is closed to new replies.