Filtering custom post type query
Yes, you can do that. Just remove the first foreach and give the General category ID and change the code like below- // Initiating shortcode. Place this code to any of your page to get your desired output. add_shortcode( ‘faq_page_content’, ‘the_dramatist_faq_page_content’); /** * Rendering function */ function the_dramatist_faq_page_content() { echo ‘<ul>’; $posts = get_posts( array( … Read more