Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function custom_wp_title() {
  2. $id = get_queried_object_id();
  3. $content = get_post($id);
  4. $html = $content->post_content;
  5. $doc = new DOMDocument();
  6. $doc->loadHTML($html);
  7.  
  8. return $doc->getElementById('my_title')->nodeValue;// you can change ID here //
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement