Hy,我与wp job manager合作,我想在ultimate member选项卡下按用户列出工作申请。我曾尝试使用此代码,但它显示了所有应用程序
function custom_shortcode() {
$args = array( \'post_type\' => \'job_application\',
\'author\'=>$author_id, );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
the_title();
echo \'<div class="entry-content">\';
the_content();
echo \'</div>\';
endwhile;
}
add_shortcode( \'query_my_posts\', \'custom_shortcode\' );
我也尝试过这种方法https://suiteplugins.com/how-to-change-the-post-type-on-ultimate-member-posts-tab/但是运气不好,有什么帮助吗?