ユーザーが選択した Jetpack Featured Content モジュールのタグ ID を呼び出せるようにしたいのですが、その値を保持する関数またはオブジェクトが見つかりません。
私は基本的に、これらの引数を使用して WP_Query から注目の投稿をフィルタリングしようとしています:
$args = array(
'ignore_sticky_posts' => 1,
'posts_per_page' => $recent_posts_count,
'tag__not_in' => array(
[HERE IS WHERE I WANT PHP TO TELL ME THE TAG ID]
),
'post_type' => array(
'post'
)
);