将下面这段代码添加到网站根目录下functions.php文件中,添加到文件的最后即可。如果你添加了没有生效,先清空缓存试试,再看看你使用的主题模板是否有单独的functions.php自定义文件调用。
function insert_after_first_paragraph($content) { if (!is_single()) return $content; $content_parts = explode('</p>', $content); if (count($content_parts) > 1) { $inserted_content = '<div class="inserted-content centered-content">这里改成你的广告代码或超链接</div>'; $content_parts[0] .= '</p>' . $inserted_content; $content = implode('</p>', $content_parts); } return $content; } add_filter('the_content', 'insert_after_first_paragraph'); function add_custom_styles() { echo '<style> .centered-content { text-align: center; margin: 20px 0; } .inserted-link { * 这里不需要定义颜色,让它继承主题样式 */ font-weight: bold; /* 可选:使链接更明显 */ } </style>'; } add_action('wp_head', 'add_custom_styles');
最新评论
需要注意,由于1panel是用容器在关联各个功能,因此主机那里原本的localhost需要改成mysql,否则即使名称用户名密码都对了也连不上数据库。 如果不是MySQL数据库,应该改成mariadb
目前的评论功能是wordpress自带的,还是第三方的呀?
备份的文件恢复到1p中后,是不是还要删除两个原来的文件?user.ini 和.htaccess