Advertisement
phpface

Hooks

Jun 26th, 2023
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. function streamtube_child_my_custom_content(){
  2.  
  3.     if( ! is_embed() ){
  4.         ?>
  5.         <img src="https://placehold.co/600x200">
  6.         <?php
  7.     }
  8.  
  9. }
  10. add_action( 'streamtube/single/content/before', 'streamtube_child_my_custom_content' );
  11.  
  12. add_action( 'streamtube/single/content/after', 'streamtube_child_my_custom_content' );
  13.  
  14. add_action( 'streamtube/player/before', 'streamtube_child_my_custom_content' );
  15.  
  16. add_action( 'streamtube/player/after', 'streamtube_child_my_custom_content' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement