Skip to content

Instantly share code, notes, and snippets.

@TooLogic
Forked from thecodepoetry/functions.php
Created February 19, 2018 11:10
Show Gist options
  • Save TooLogic/ee85d462df2a425183f5ee196d60819a to your computer and use it in GitHub Desktop.
Save TooLogic/ee85d462df2a425183f5ee196d60819a to your computer and use it in GitHub Desktop.
Dynamic page layout management
add_action( 'get_header', 'dt_archive_layout', 10 );
function dt_archive_layout() {
$config = Presscore_Config::get_instance();
if( is_archive() || is_category() || is_search() ){
$config->set( 'template.columns.number', '5' );
$config->set( 'post.preview.width.min', '200' );
$config->set( 'image_layout', 'resize' );
$config->set( 'thumb_proportions', array( "width" => "2", "height" => "1" ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment