Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // WP_Ajax & oEmbed
  2. add_action( 'wp_ajax_acf_oembed', __NAMESPACE__ . '\\acf_oembed_callback' );
  3. add_action( 'wp_ajax_nopriv_acf_oembed', __NAMESPACE__ . '\\acf_oembed_callback' );
  4. function acf_oembed_callback() {
  5. $post_id = $_GET['post_id'];
  6.  
  7. $oembed = get_field('oembed', $post_id);
  8.  
  9. var_dump($oembed);
  10.  
  11. wp_die();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement