Advertisement
srikat

Untitled

Mar 31st, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. remove_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 );
  2.  
  3. add_action( 'genesis_after_header', 'sk_taxonomy_title_description_opening_wrap' );
  4. add_action( 'genesis_after_header', 'genesis_do_taxonomy_title_description' );
  5. add_action( 'genesis_after_header', 'sk_taxonomy_title_description_closing_wrap' );
  6.  
  7. function sk_taxonomy_title_description_opening_wrap() {
  8. echo '<div class="custom-archive-description"><div class="wrap">';
  9. }
  10.  
  11. function sk_taxonomy_title_description_closing_wrap() {
  12. echo '</div></div>';
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement