// Single Doctor Display add_shortcode('single_doctor_profile', function() { if(!is_singular('doctors')) return; ob_start(); the_title('

','

'); $speciality = get_field('speciality'); $phone = get_field('phone'); echo '

Speciality: '.$speciality.'

'; echo '

Phone: '.$phone.'

'; return ob_get_clean(); });

Author: dranupamkhandelwal@gmail.com