有没有办法在Wordpress中设置受密码保护的帖子?另外,我似乎只能保护此而不是任何自定义字段。
编辑 - 尽可能避免使用插件
答案 0 :(得分:5)
我认为你的意思是在前端设置受密码保护的帖子。
a)CSS:
如果您的主题使用post_class()
功能,例如:
<article <?php post_class(); ?>>...</article>
然后它将生成:
<article class="... post-password-required ...">...</article>
用于受密码保护的帖子。
因此,您只需使用以下内容定位这些帖子:
.post-password-required {
background-color: #eee;
}
在样式表中。
b)表格:
i)如果您想在密码表单中添加文字,可以使用以下内容:
add_action( 'the_password_form', 'rob_the_password_form' );
function rob_the_password_form( $output )
{
$before = ' Before '; // Modify this to your needs!
$after = ' After '; // Modify this to your needs!
return $before . $output . $after;
}
ii)如果您想直接修改HTML表单,可以使用以下命令覆盖它:
add_filter( 'the_password_form', 'rob_override_the_password_form' );
function rob_override_the_password_form( $form = '' ) {
global $post;
$label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID );
$form = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post">
' . __( "To view this protected post, enter the password below:" ) . '
<label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" maxlength="20" /><input type="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" />
</form>
';
return $form;
}
这是基于Codex的示例。它使用与默认格式相同的格式。
c)标题:
要更改默认的受保护:标题前缀,您可以使用:
add_filter( 'protected_title_format', 'rob_protected_title_format' );
function rob_protected_title_format( $format )
{
$format = __( ' Members only! %s ' ); // Modify this to your needs!
return $format;
}
希望这有助于您设计受保护的帖子。
答案 1 :(得分:-1)
您可以使用Protected Post Personalizer插件来执行操作https://wordpress.org/plugins/protected-post-personalizer/