Answer the question
In order to leave comments, you need to log in
Why doesn't the pre_get_document_title filter work?
Trying to use the wp_get_document_title function in a plugin
add_action( 'after_setup_theme', 'theme_functions' );
function theme_functions() {
add_theme_support( 'title-tag' );
}
add_filter( 'pre_get_document_title','sm_pre_get_document_title');
function pre_get_document_title(){
global $post;
if( $post->ID != 6486 ) return;
return 'Тест';
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question