php - Override plugin generated URL with custom URL for specific page -
i using seo ultimate plugin generating dynamic title tags each page, 1 specific page need show custom title , dont't want generate via plugin.
i have disabled pluggin specific page restricting keywords & description not title
code1
function hide_seo_meta_from_detail_page() { remove_action('wp_head', array($globals['seo_ultimate'], 'template_head'), 1); } hide_seo_meta_from_detail_page(); also tried add_filter still coming plugin code2
add_filter( 'wp_title', 'set_page_title' ); function set_page_title( $orig_title ) { $title = 'my custom title'; return $title; } thanks
Comments
Post a Comment