add_action( 'parse_query', function( $vars )
{
if ( 'project' == $vars->query['post_type'] )
{
$vars->set( 'orderby', 'title' );
$vars->set( 'order', 'ASC' ); // DESC
} // end if
}); // end add_action
add_action( 'parse_query', function( $vars )
{
if ( 'project' == $vars->query['post_type'] )
{
$vars->set( 'orderby', 'title' );
$vars->set( 'order', 'ASC' ); // DESC
} // end if
}); // end add_action
Neueste Kommentare