coba ini
function contoh_tambah($content)
{
$content .= ‘ganti kalimat ini dengan yg kamu mau’;
return $content;
}
add_filter(‘the_content’,’contoh_tambah’);
coba gini
$args = array(
‘category => ‘nama_kategori’,
‘post_type’ => ‘post’,
‘numberposts’ => 5,
‘order’ => ‘DESC’
);
$post = get_posts( $args );
foreach( $post as $posts ) : setup_postdata($posts); ?>
//tampilkan apa yg mau ditampilkan
<?php endforeach; wp_reset_postdata(); ?>