1

我正在尝试编辑一个博客存档页面模板,该模板将隐藏所有输出,除非输入密码。Currently when "Password protected" is selected, it only hides content entered into the page and not the category output as well.

显然 WordPress 有一个名为 Post_Password_Required 的函数引用,它应该包含在模板中的类别输出周围。这样,如果博客模板被调用并且也受密码保护,WordPress 将阻止所有输出,直到输入密码。

http://codex.wordpress.org/Function_Reference/post_password_required

现在,在任意尝试找出将此代码放置在 page-blog.php 中的位置并且失败后,我想知道是否有人对放置它的位置有更好的了解。

我正在使用一个优雅的主题模板,他们的支持是这个问题的关键。告诉我我需要找到一个插件来执行此操作并应对联系第 3 方开发人员来解决此问题。这是博客模板的代码供参考。我很感激任何帮助。

<?php 
/*
Template Name: Investor
*/
?>
<?php if (is_front_page()) { ?>
<?php get_template_part('home'); ?>
<?php } else { ?>   
<?php 
$et_ptemplate_settings = array();
$et_ptemplate_settings = maybe_unserialize( get_post_meta($post->ID,'et_ptemplate_settings',true) );

$fullwidth = isset( $et_ptemplate_settings['et_fullwidthpage'] ) ? (bool) $et_ptemplate_settings['et_fullwidthpage'] : false;

$et_ptemplate_blogstyle = isset( $et_ptemplate_settings['et_ptemplate_blogstyle'] ) ? (bool) $et_ptemplate_settings['et_ptemplate_blogstyle'] : false;

$et_ptemplate_showthumb = isset( $et_ptemplate_settings['et_ptemplate_showthumb'] ) ? (bool) $et_ptemplate_settings['et_ptemplate_showthumb'] : false;

$blog_cats = isset( $et_ptemplate_settings['et_ptemplate_blogcats'] ) ? (array) $et_ptemplate_settings['et_ptemplate_blogcats'] : array();
$et_ptemplate_blog_perpage = isset( $et_ptemplate_settings['et_ptemplate_blog_perpage'] ) ? (int) $et_ptemplate_settings['et_ptemplate_blog_perpage'] : 10;
?>


<?php get_header(); ?>

<div id="content-left">

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="entry post clearfix"<?php if ($fullwidth) echo ' style="padding-right: 10px;"'; ?>>
<?php $width = 140;
$height = 140;
$classtext = 'thumbnail alignleft';
$titletext = get_the_title();

$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
$thumb = $thumbnail["thumb"]; ?>

<?php if($thumb <> '' && get_option('myproduct_page_thumbnails') == 'on') { ?>
<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext , $width, $height, $classtext); ?>
<?php }; ?>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

<div id="et_pt_blog">
<?php $cat_query = ''; 
if ( !empty($blog_cats) ) $cat_query = '&cat=' . implode(",", $blog_cats);
else echo '<!-- blog category is not selected -->'; ?>
<?php 
$et_paged = is_front_page() ? get_query_var( 'page' ) : get_query_var( 'paged' );
?>
<?php query_posts("showposts=$et_ptemplate_blog_perpage&paged=" . $et_paged . $cat_query); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if ( post_password_required() ) ?>
<div class="et_pt_blogentry clearfix">
<h2 class="et_pt_title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

<p class="et_pt_blogmeta"><?php esc_html_e('Posted','MyProduct'); ?> <?php esc_html_e('on','MyProduct'); ?> <?php the_time(get_option('myproduct_date_format')) ?>

<?php $thumb = '';
$width = 184;
$height = 184;
$classtext = '';
$titletext = get_the_title();

$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
$thumb = $thumbnail["thumb"]; ?>

<?php if ( $thumb <> '' && !$et_ptemplate_showthumb ) { ?>
<div class="et_pt_thumb alignleft">
<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
<a href="<?php the_permalink(); ?>"><span class="overlay"></span></a>
</div> <!-- end .thumb -->
<?php }; ?>

<?php if (!$et_ptemplate_blogstyle) { ?>
<p><?php truncate_post(550);?></p>
<a href="<?php the_permalink(); ?>" class="readmore"><span><?php esc_html_e('read more','MyProduct'); ?></span></a>
<?php } else { ?>
<?php
global $more;
$more = 0;
?>
<?php the_content(); ?>
<?php } ?>
</div> <!-- end .et_pt_blogentry -->

<?php endwhile; ?>
<div class="page-nav clearfix">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
else { ?>
<?php get_template_part('includes/navigation'); ?>
<?php } ?>
</div> <!-- end .entry -->
<?php else : ?>
<?php get_template_part('includes/no-results'); ?>
<?php endif; wp_reset_query(); ?>

</div> <!-- end #et_pt_blog -->

<?php edit_post_link(esc_html__('Edit this page','MyProduct')); ?>
<div class="clear"></div>
</div> <!-- end .post -->
<?php endwhile; endif; ?>
</div> <!-- end #content-left -->

<?php if (!$fullwidth) get_sidebar(); ?>
<?php get_footer(); ?>
<?php } ?>
4

0 回答 0