I’m trying to get the category ID from Kirki Function and then pass the ID into a loop to get View all posts from that specific category id with name.
I write this code at the backend:
Kirki::add_field( 'cactus_option', array(
'type' => 'select',
'settings' => 'cat_choose',
'label' => __( 'This is the label', 'kirki' ),
'description' => __( 'This is the control description', 'kirki' ),
'help' => __( 'This is some extra help text.', 'kirki' ),
'section' => 'cat_arrange',
'default' => 'option-1',
'priority' => 10,
'choices' => Kirki_Helper::get_terms( 'category' ),
) );
And I get this result:
Now whatever category I have selected, I want to bring its ID on the front page.
And with the help of a loophole from that ID, I want to view all the posts of that Pacific ID.
I have written this code due to which only id number is showing and nothing else.
<div class="container">
<h1> <?php echo get_theme_mod('cat_choose', $defaults);?></h1>
</div>
But I want to like this: