Advertisement
arie_cristianD

insert code to amp template

Jun 12th, 2024
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. /* add code to amp Head tag */
  2. function add_amp_custom_head_code() {
  3.     ?>
  4.     insert your code here
  5.  
  6.     <?php
  7. }
  8. add_action( 'amp_post_template_head', 'add_amp_custom_head_code' );
  9.  
  10.  
  11.  
  12.  
  13. /* add code to amp Body tag before header */
  14. function add_amp_custom_body() {
  15.     ?>
  16.         insert your code here
  17.    
  18.     <?php
  19. }
  20. add_action( 'jnews_amp_before_header', 'add_amp_custom_body' );
  21.  
  22.  
  23.  
  24. /* add code to amp Body tag before article */
  25. function add_amp_custom_before_article() {
  26.     ?>
  27.         insert your code here
  28.    
  29.     <?php
  30. }
  31. add_action( 'jnews_amp_before_article', 'add_amp_custom_before_article' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement