remove tag only one page
-
[Moderator note: moved to Hacks Forum – the best place for custom coding questions]
Hello to all
For a reason of personalization of a wordpress page, I would like to delete
The title tag of the “info” pageI found on the internet this code that removes the <title> tag on all my site
remove_action( 'wp_head', '_wp_render_title_tag', 1 );
So the function is good
But I would only delete the title tag from my info page
Id = 45
Slug = info
Custom page => info.phpHere my 2 tries but the condition does not work on this page
if ( is_page_template( 'info.php' ) ) { remove_action( 'wp_head', '_wp_render_title_tag', 1 ); }
and
if(is_page('info')) { remove_action( 'wp_head', '_wp_render_title_tag', 1 ); }
Can you tell me if there is an error?
Thank you
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘remove tag only one page’ is closed to new replies.