Answers for "get post child categories in wordpress"

PHP
1

get category post in wordpress

echo '<p>'. get_the_category( $id )[0]->name .'</p>';
Posted by: Guest on October-18-2021
0

wordpress get child posts

<?php
    $child_posts = get_children( array('post_parent' => get_the_ID()) );
?>
Posted by: Guest on February-19-2022

Code answers related to "get post child categories in wordpress"

Browse Popular Code Answers by Language