最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

wp query - Display posts ONLY from the current logged in user and current weekyearmonth Elementor posts

programmeradmin6浏览0评论

I want to show the posts my users have added in three different sections. That would be "Your Posts from This week" and so on. I am currently using:

add_action( 'elementor/query/currentuser', function( $query ) {
    if ( is_user_logged_in() ){
        $query->set( 'author', get_current_user_id() );
    }
} );

to display posts by current logged in users. But any idea what I can add to this query to also display posts from current week/month/year?

PS: Sorry for my week English, it is not my first language :)

发布评论

评论列表(0)

  1. 暂无评论