" . esc_html__( 'Breaking News', 'bitcoinee' ) . "
"; ?>
array( 'post' ),
'post_status' => array( 'publish' ),
'tag' => array( 'breakingnews' ),
'orderby' => 'date',
'no_found_rows' => true,
'update_post_meta_cache' => false,
'update_post_term_cache' => false,
'fields' => 'ids',
);
// The Query
$breakingnews = new WP_Query( $args );
// The Loop
if ( $breakingnews->have_posts() ) {
while ( $breakingnews->have_posts() ) {
$breakingnews->the_post(); ?>
'.esc_html__( 'Posts with tagged "breakingnews" will show up here!', 'bitcoinee' ).'';
}
// Restore original Post Data
wp_reset_postdata(); ?>
"; // end .posts-heading
} } ?>