get_comments_popup_template()WP 1.5.0

Deprecated since 4.5.0. It is no longer supported and may 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.

Returns

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.9

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

	return '';
}