Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. /**
  5. * Add cotnent above the Archive page's each post's title before
  6. */
  7. add_action( 'astra_archive_post_title_before', 'astra_child_add_content_before_archive_post_title' );
  8. function astra_child_add_content_before_archive_post_title() {
  9. echo "Add Your content before the archive pages post title";
  10. }
  11.  
  12. /**
  13. * Add cotnent above the Single Post's title before
  14. */
  15. add_action( 'astra_single_post_title_before', 'astra_child_add_content_before_single_post_title' );
  16. function astra_child_add_content_before_archive_post_title() {
  17. echo "Add Your content before the single post title";
  18. }
Add Comment
Please, Sign In to add comment