Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
// Single Doctor Display add_shortcode('single_doctor_profile', function() { if(!is_singular('doctors')) return; ob_start(); the_title('
Speciality: '.$speciality.'
'; echo 'Phone: '.$phone.'
'; return ob_get_clean(); });