Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created November 22, 2013 04:11
Show Gist options
  • Select an option

  • Save JiveDig/7594757 to your computer and use it in GitHub Desktop.

Select an option

Save JiveDig/7594757 to your computer and use it in GitHub Desktop.
Archive pages - shorten the content limit
<?php
// Shorten Excerpt
add_filter( 'genesis_pre_get_option_content_archive_limit', 'child_shorten_excerpt' );
function child_shorten_excerpt( $length ) {
$length = 200;
return $length;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment