Advertisement
srikat

Untitled

Nov 30th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_filter( 'genesis_pre_get_option_content_archive', 'custom_force_full_content' );
  2. /**
  3. * Force full content on a specific category archive.
  4. */
  5. function custom_force_full_content() {
  6. if ( is_category( 'category-1' ) ) {
  7. return 'full';
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement