正文:
今日,我收到 Google Adsense 的提示,说我的网站有色情内容,禁止在我的网站上投放广告。本站可是贯彻落实党的领导,怎么会有那个东西?我又检查了一遍,发现是已经发布的几组图片。我是经过筛选并使用腾讯的图像检查后才发布的。谷歌要管这个,无语。
为了尽快恢复,我首先禁止了提示页面上的所有广告并提交审查,但结果没有给我。我甚至不为你做广告,所以你必须照顾它。它真的像一个美丽的国家。
最后只能给那些文章加文章密码保护,直接屏蔽机器人。以下是修改文章密码保护提示的代码,并将其添加到你的wordpress主题 functions.php
文件中。
//自定义文章密码保护提示
//https://www.huizhanii.com/34474.html/
function custom_password_form() {
global $post;
$label = '密码:www.xxxx.com'; // 自定义提示内容
$output = '<form action="' . esc_url(site_url('wp-login.php?action=postpass', 'login_post')) . '" method="post" style="max-width: 400px;margin: 0 auto;padding: 20px;border: 1px solid #ccc;background-color: #f9f9f9;border-radius: 6px;">
<p style="margin-bottom: 20px;">' . $label . '</p><p><input name="post_password" type="password" size="20" style="width: 100%;padding: 10px;border: 1px solid #ccc;border-radius: 4px;"/></p>
<p><input type="submit" name="Submit" value="' . esc_attr__('Submit') . '" style="display: block;width: 100%;padding: 10px;background-color: #007bff;color: #fff;border: none;border-radius: 4px;cursor: pointer;"/></p>
</form>';
return $output;
}
add_filter('the_password_form', 'custom_password_form');
转载请注明:汇站网 » WordPress 修改了文章的默认密码保护提示