Custom template for password protected page
separate the queries for the current page and the query for all posts in a category. Untested example: <?php /* Template Name: xxxx */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_header(); ?> <?php if ( post_password_required() ) : $args = array( ‘cat’ => 9, ‘numberposts’ => -1, ); $posts = get_posts( … Read more