'answer', 'post_status'=> 'publish', ); $posts_answers_gallery = get_posts( $answers_args ); foreach($posts_answers_gallery as $rows){ $post_titles = $rows->post_title; $post_content = $rows->post_content; echo '
' . '
' . '

' . $post_titles . '

' . '
' . '

' . $post_content . '

' . '
' . '
' . '
'; } } add_shortcode('acf_faq_page', 'acf_answer_page'); ?>