Yoast\WP\SEO\Integrations\Front_End
Comment_Link_Fixer::clean_reply_to_com() private Yoast 1.0
Checks whether we can allow the feature that removes ?replytocom query parameters.
{} Это метод класса: Comment_Link_Fixer{}
Хуки из метода
Возвращает
true/false. True to remove, false not to remove.
Использование
// private - только в коде основоного (родительского) класса $result = $this->clean_reply_to_com();
Код Comment_Link_Fixer::clean_reply_to_com() Comment Link Fixer::clean reply to com Yoast 15.6.2
private function clean_reply_to_com() {
/**
* Filter: 'wpseo_remove_reply_to_com' - Allow disabling the feature that removes ?replytocom query parameters.
*
* @param bool $return True to remove, false not to remove.
*/
return (bool) \apply_filters( 'wpseo_remove_reply_to_com', true );
}