Advertisement
arie_cristianD

Add FAQ Schema

Jul 20th, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_action('wp_head', 'custom_script');
  2.  
  3. function custom_script(){
  4.     if(is_single()){
  5.         $faq = get_post_custom(get_the_ID());
  6.         if(isset($faq['FAQ'][0])){
  7.             echo $faq['FAQ'][0];
  8.         }
  9.     }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement