0

get_category()、get_post_title() などの現在の投稿の情報をメソッド内からwidget取得する方法 (以下のコード)、ウィジェットが投稿ループ内に配置されていると仮定しますか?

class My_Widget extends WP_Widget {

    public function widget( $args, $instance ) {
        // outputs the content of the widget
    }

}
4

1 に答える 1

1

投稿 ID は次の方法で取得できます。

$post_id = $GLOBALS['post']->ID;

$post_id を使用すると、必要な情報を取得できます。

于 2013-09-04T22:25:58.343 に答える