存储在WordPress中时发送的帖子在哪里?

时间:2015-10-05 07:29:34

标签: php wordpress

在wordpress中存储时发送的帖子在哪里?不是数据库,而是实际的php文件?

我需要知道这一点,因为如果使用certein关键字,我会创建一些自动插入的图像,例如" WIN_KEY"等

1 个答案:

答案 0 :(得分:1)

您应该查看名为the_content的过滤器。使用过滤器,您可以运行"搜索并替换"用标签替换WIN_KEY。

这里是the_content过滤器的文档: https://codex.wordpress.org/Plugin_API/Filter_Reference/the_content

将您的过滤器添加到主题的functions.php文件或其他首选位置。

示例:

add_filter('the_content', 'my_the_content_filter');
function my_the_content_filter($content) {
    return str_replace('WIN_KEY', '<img src="my-image.png">', $content);
}