我想制作插件来编辑帖子,并在他们实时获得时向他们的标题添加一些东西。喜欢主页上的帖子。我只想对帖子属性进行一些更改。我已经找到了一个关于这个问题的解决方案,但我不知道如何让它工作。链接到解决方案。谢谢
1 回答
牧羊人nacy
TA贡献1862条经验 获得超7个赞
我认为你可以使用WordPress钩子,这就是我的做法。
在添加以下代码中:functions.php
<?php
function populate_posts_data( $posts, $query ) {
global $wpdb;
if ( !count( $posts ) )
return $posts; // posts array is empty send it back with thanks.
while ( $posts as $post ) {
// do whatever you want for each post, alter its data, etc
$post->title = $post->title . ' Edited');
}
return $posts;
}
add_filter( 'the_posts', 'populate_posts_data' );
?>
谢谢,希望它能帮助你。
- 1 回答
- 0 关注
- 90 浏览
添加回答
举报
0/150
提交
取消