Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
get_category()、get_post_title() などの現在の投稿の情報をメソッド内からwidget取得する方法 (以下のコード)、ウィジェットが投稿ループ内に配置されていると仮定しますか?
widget
class My_Widget extends WP_Widget { public function widget( $args, $instance ) { // outputs the content of the widget } }
投稿 ID は次の方法で取得できます。
$post_id = $GLOBALS['post']->ID;
$post_id を使用すると、必要な情報を取得できます。