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.
widget假设小部件放置在帖子循环中,如何从内部方法(下面的代码)获取当前帖子的信息,例如get_category(),get_post_title()等?
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 您可以获得所需的任何信息。