get_comments_popup_template

Definition:
function get_comments_popup_template() {}

Retrieve path of comment popup template in current or parent template.
Checks for comment popup template in current template, if it exists or in the parent template.

Source code

function get_comments_popup_template() {

	$template = get_query_template( 'comments_popup', array( 'comments-popup.php' ) );



	// Backward compat code will be removed in a future release

	if ('' == $template)

		$template = ABSPATH . WPINC . '/theme-compat/comments-popup.php';



	return $template;

}

1288

No comments yet... Be the first to leave a reply!

Leave a comment