$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>user roles - Subscriber (with read permissions) cannot view Private posts|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

user roles - Subscriber (with read permissions) cannot view Private posts

matteradmin9PV0评论

QUESTION: Why can't my Subscriber role (i.e. logged out user) view Private posts with the read_private_posts (or read_private_pages) capability extended to them?

I use the Capability Manager Enhanced plugin to select and extend roles. I have also tested the below in my functions.php child theme for redundancy. I have disabled my cache (WP Rocket) plugin. I have selectively deleted all plugins and child theme files. I have even given the Subscriber Level 10 permissions with every capability selected. Nothing works and a "404 Error" still results when they try to access a Private post. Does anyone have any experience with this issue? It's really bugging me (pun intended).

function my_add_cap2role() {
    global $wp_roles;
    $wp_roles->add_cap('subscriber', 'read_private_posts' );
}
add_action( 'init', 'my_add_cap2role' );

Note that this is not a repeat question as all the others pertain to "how" to implement this functionality. I know how to but am working through a bug that is preventing a "subscriber" from properly viewing private pages.

Post a comment

comment list (0)

  1. No comments so far