我尝试使用密码保护高级自定义字段插件生成的某些自定义字段。
这是我需要隐藏的代码:
<h2>
<?php the_field('page_title'); ?>
</h2>
<div class="fusion-one-half one_half fusion-column">
<h2>
<?php the_field('subtitle_1'); ?>
</h2>
<?php the_field('list_1'); ?>
</div>
<div class="fusion-one-third one_third fusion-column last">
<h2>
<?php the_field('subtitle_2'); ?>
</h2>
<?php the_field('list_2'); ?>
</div>
我看过这个链接https://codex.wordpress.org/Using_Password_Protection,但不知道如何在我的代码中使用它。
有什么想法吗?
谢谢!
答案 0 :(得分:2)
我认为你已经有了答案,但如果你没有,那么请尝试以下方法:
if ( post_password_required() ) {
echo get_the_password_form();
} else {
'Password Protected Custom Content'
}
您可以在http://htotheml.com/password-protect-custom-templates-in-wordpress/
找到更详细的回复