我试图在WordPress中隐藏在受密码保护的页面上,直到输入密码为止。我有以下代码,但没有成功。
<?php
if ( !post_password_required() ) {
echo '<style> #text-6 {
display: none;
}
</style>';
} else {
echo '<style> #text-6 {
display: block;
}
</style>';
}
?>
我的PHP需要更多吗?
答案 0 :(得分:0)
如果&#39; post_password_required()&#39;功能检查页面是否受密码保护,然后你想要隐藏侧边栏
<?php
if (post_password_required() ) {
echo '<style> #text-6 {
display: none !important;
}
</style>';
} else {
echo '<style> #text-6 {
display: block;
}
</style>';
}
?>