Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function set_field_value(){
  2. echo "<script type='text/javascript'>
  3. document.getElementById('acf-field_5cd68b4d12a20').value = 'test123456';
  4. </script>";
  5. }
  6. add_action('admin_footer', 'set_field_value');
  7.  
  8. function feed_custom_field($html, $id) {
  9. $src = wp_get_attachment_image_src( $id, $size, false );
  10. $image_url = $src[0];
  11. echo "<script type='text/javascript'>
  12. document.getElementById('acf-field_5cd68b4d12a20').value = $image_url;
  13. </script>";
  14. return $src[0].",";
  15. }
  16. add_filter( 'image_send_to_editor', 'feed_custom_field', 10, 9 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement