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

Popular posts from this blog

java - Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved -

Round ImageView Android -

How can I utilize Yahoo Weather API in android -