Ответы:
Если вы не хотите всегда щелкать по столбцу «Заголовок», чтобы отсортировать сообщения по заголовкам, вы можете поместить этот код либо в файл текущей активной темы WordPress functions.php
, либо в плагин. Это автоматически всегда сортирует ваши сообщения, поэтому вам не нужно каждый раз нажимать на заголовок столбца.
Вы можете использовать это для установки порядка сортировки по умолчанию для типов записей.
/* Sort posts in wp_list_table by column in ascending or descending order. */
function custom_post_order($query){
/*
Set post types.
_builtin => true returns WordPress default post types.
_builtin => false returns custom registered post types.
*/
$post_types = get_post_types(array('_builtin' => true), 'names');
/* The current post type. */
$post_type = $query->get('post_type');
/* Check post types. */
if(in_array($post_type, $post_types)){
/* Post Column: e.g. title */
if($query->get('orderby') == ''){
$query->set('orderby', 'title');
}
/* Post Order: ASC / DESC */
if($query->get('order') == ''){
$query->set('order', 'ASC');
}
}
}
if(is_admin()){
add_action('pre_get_posts', 'custom_post_order');
}
Вы можете использовать некоторые из этих примеров условий ...
/* Effects all post types in the array. */
if(in_array($post_type, $post_types)){
}
/* Effects only a specific post type in the array of post types. */
if(in_array($post_type, $post_types) && $post_type == 'your_post_type_name'){
}
/* Effects all post types in the array of post types, except a specific post type. */
if(in_array($post_type, $post_types) && $post_type != 'your_post_type_name'){
}
Если вы хотите применить эту сортировку ко ВСЕМ типам записей, независимо от того, являются ли они "встроенными" ...
Изменить это:
$post_types = get_post_types(array('_builtin' => true), 'names');
К этому:
$post_types = get_post_types('', 'names');
Ах, щёлкни по названию, чтобы переключить сортировку по алфавиту ....
if ( ! is_admin ) { return; }