Password Protect wp-content?

时间:2019-06-06 作者:M.T

我们有一个受密码保护的博客,因此只有拥有密码的用户才能看到帖子上的文本,但我们添加到博客帖子中的每个图像都会生成URL,任何知道该链接并在谷歌中列出的人都可以访问这些URL。

WordPress中是否有密码保护某些图像?

1 个回复
最合适的回答,由SO网友:jaze 整理而成

密码保护wp内容可能不是一个好主意,可能会破坏您的网站界面。如果你想在google Search中不显示图像,请创建一个机器人。txt文件在您的根目录中托管并添加以下代码。

   User-agent: *
   Disallow: /wp-admin/
   Disallow: /wp-content/

  or below if you want to not specific images 

   User-agent: Googlebot-Image
   Disallow: /images/yourImageName.jpg #yourImageName.jpg image for Googlebot 
   specifically.
  1. Or Use this plugin and add below code in Settings>Phpinserter
块报价

add_action( \'wp_head\', function() {
if ( is_page( \'your_page_name\' ) ) {
    echo \'<meta name="robots" content="noindex">\';
}} );

your specific page will be not index by Google
或者您可以从这里选择插件。这是一种更好的方法,但你必须找到一些免费的plugins for content restriction.

Some plugins for restriciting page contents

相关推荐

Disable password limitations

我在我的Wordpress网站上有一个“learnpress”插件,它使用默认的注册Wordpress设置,但我想删除密码的所有限制,包括长度(12个字符),添加数字,我还想能够用其他语言设置密码。我在函数中尝试了此代码。php,但它没有工作!有什么想法吗?function wc_remove_password_strength() { if ( wp_script_is( \'wc-password-strength-meter\', \'enqueued\' ) ) { wp_