“Dapatkan Nama Kategori oleh ID WordPress” Kode Jawaban

Tampilkan Kategori Nama WordPress

<?php
$categories = get_the_category();
if ( ! empty( $categories ) ) {
	echo '<a href="' . esc_url( get_category_link( $categories[0]->term_id ) ) . '">' . esc_html( $categories[0]->name ) . '</a>';
}
?>
heinthuya

Dapatkan Nama Kategori oleh ID WordPress

get_cat_name( $cat_id );
Vivacious Vulture

Dapatkan posting WordPress dengan nama kategori ..!

<?php query_posts('category_name=CATEGORYNAME&showposts=5');

while (have_posts()) : the_post(); ?>

the_title();   // To display the title of all posts that have category name selected 

the_content();   // To display the content of all posts that have category name selected 


<?php endwhile; ?>
Loreto

Jawaban yang mirip dengan “Dapatkan Nama Kategori oleh ID WordPress”

Pertanyaan yang mirip dengan “Dapatkan Nama Kategori oleh ID WordPress”

Lebih banyak jawaban terkait untuk “Dapatkan Nama Kategori oleh ID WordPress” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya