📅  最后修改于: 2023-12-03 15:38:22.974000             🧑  作者: Mango
在 WordPress 的 Post 中,如果要隐藏 hr 标签,可以在 PHP 代码中进行设置。以下是具体步骤:
首先,需要获取当前 Post 的内容,可以使用 WordPress 提供的 get_post()
函数,该函数会返回关于当前 Post 的对象。
$post_id = get_the_ID();
$post = get_post( $post_id );
$content = $post->post_content;
使用 preg_replace() 函数在 Post 的内容中查找 hr 标签,并替换为空字符,即可将 hr 标签隐藏。
$content = preg_replace( "/<hr[^>]*>/", "", $content );
最后,将更新后的内容保存回数据库中,即可完成 hr 标签的隐藏。
$post->post_content = $content;
wp_update_post( $post );
以上就是在 Post WordPress 中隐藏 hr 标签的 PHP 代码实现,可以根据需要对代码进行修改和应用。