WordPress功能可在每页上添加文本警告

时间:2017-03-21 作者:Eko Yuliawan

如何在Wordpress上的每个页面中添加一个显示文本(无JS)的函数?

1 个回复
SO网友:rudtek

您希望它显示在哪里?

此函数将在每个页面的内容之前或之后放置内容。

function rt_before_after($content) {
    $beforecontent = \'This goes before the content.\';
    $aftercontent = \'And this will come after.\';
    $fullcontent = $beforecontent . $content . $aftercontent;

    return $fullcontent;
}
add_filter(\'the_content\', \'rt_before_after\');
如果你特别想要它,请告诉我你想要的地方,我会提供其他选择。

相关推荐

Gutenberg:RichText的动态渲染

当我保存时<RichText />将内容添加到我的属性中,并希望将其用于render_callback 在php中,它有点凌乱。一旦文本包含RichText(粗体、斜体、换行等),$attributes 存储起来非常复杂attributes: { description: { type: \"text\", // no source, so it goes straight into the html comment, nice