我想制作插件來編輯帖子,并在他們實時獲得時向他們的標(biāo)題添加一些東西。喜歡主頁上的帖子。我只想對帖子屬性進(jìn)行一些更改。我已經(jīng)找到了一個關(guān)于這個問題的解決方案,但我不知道如何讓它工作。鏈接到解決方案。謝謝
1 回答

牧羊人nacy
TA貢獻(xiàn)1862條經(jīng)驗 獲得超7個贊
我認(rèn)為你可以使用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 關(guān)注
- 109 瀏覽
添加回答
舉報
0/150
提交
取消