为了账号安全,请及时绑定邮箱和手机立即绑定

如何在wordpress中使用插件过滤主题中加载的帖子?

如何在wordpress中使用插件过滤主题中加载的帖子?

PHP
偶然的你 2022-08-05 16:26:51
我想制作插件来编辑帖子,并在他们实时获得时向他们的标题添加一些东西。喜欢主页上的帖子。我只想对帖子属性进行一些更改。我已经找到了一个关于这个问题的解决方案,但我不知道如何让它工作。链接到解决方案。谢谢
查看完整描述

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' );

 ?>

谢谢,希望它能帮助你。


查看完整回答
反对 回复 2022-08-05
  • 1 回答
  • 0 关注
  • 90 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信