How to edit tags in head via plugin?
-
Hello,
I was wondering how can I change title, meta and other tags in <head> via plugin ? I have created interstitial page, that will show up when user clicks on an outbound link and before the exist page appears.Page is being created dynamically, so title and other info will not be same all the time.
add_action('wp_head', 'my_head'); // function my_head(){ echo '<title> $MyVar->title; </title> '; }
Above just adds additional title tag, and does not alter the current one.
Please advice.
- The topic ‘How to edit tags in head via plugin?’ is closed to new replies.