get_comments_popup_template()WP 1.5.0

Deprecated from version 4.5.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Retrieve path of comment popup template in current or parent template.

No Hooks.

Return

String. Full path to comments popup template file.

Usage

get_comments_popup_template();

Changelog

Since 1.5.0 Introduced.
Deprecated since 4.5.0

get_comments_popup_template() code WP 6.5.2

function get_comments_popup_template() {
	_deprecated_function( __FUNCTION__, '4.5.0' );

	return '';
}