<?php | |
/** | |
* Genesis Subpages - Sort by Name | |
* @author Bill Erickson | |
* @link http://www.billerickson.net/code/genesis-subpages-sort-by-name | |
* @link http://wordpress.org/extend/plugins/genesis-subpages-as-secondary-menu/ | |
* | |
* @param array $args, used by wp_list_pages | |
* @return array modified $args | |
*/ | |
function be_genesis_subpages_sort_by_name( $args ){ | |
$args['sort_column'] = 'post_title'; | |
return $args; | |
} | |
add_filter( 'be_genesis_subpages_args', 'be_genesis_subpages_sort_by_name' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters