Наличие виджета, зарегистрированного в function.php
для отображения определенной метатеги post_id:
class featured_widget extends WP_Widget
{
/**
* Display front-end contents.
*/
function widget($args, $instance)
{
$post = get_post($instance['post_id']);
...
}
}
Я хочу исключить назначенный post_id
из $post
из моего цикла:
if (have_posts()) : while (have_posts()) : the_post();