Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_action('wp_head',..);
  2.  
  3. function add_brand_style($newItem){
  4. global $newItem;
  5. echo 'item:'.$newItem;
  6. }
  7. add_action('wp_head','add_brand_style');
  8.  
  9. $array = array("keywords" => "keywords here", "description" => "desc here");
  10. add_action( 'wp_head', function() use ( $array ) {
  11. foreach ($array as $key => $value) {
  12. if ($key == "description") { echo "your meta here"; }
  13. }
  14. }, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement