Solo un punto di partenza, poiché sicuramente i problemi verranno visualizzati durante l'ulteriore sviluppo. Ad esempio, in questo momento, la funzionalità di ricerca si interrompe poiché si aspetta una stringa (post_type) e sta ricevendo un array.
Per elencare più di un tipo di post nella schermata Messaggi, agganciamo pre_get_posts
e modifichiamo la query. In questo test, Messaggi, Pagine e Prodotti verranno mostrati insieme nella schermata Messaggi ( http://example.com/wp-admin/edit.php
).
add_action( 'pre_get_posts', 'join_cpt_list_wspe_113808' );
function join_cpt_list_wspe_113808( $query )
{
// If not backend, bail out
if( !is_admin() )
return $query;
// Detect current page and list of CPTs to be shown in Dashboard > Posts > Edit screen
global $pagenow;
$cpts = array( 'post', 'page', 'product' );
if( 'edit.php' == $pagenow && ( get_query_var('post_type') && 'post' == get_query_var('post_type') ) )
$query->set( 'post_type', $cpts );
return $query;
}
Un codice di supporto per mostrare una colonna con ogni post Tipo di post:
add_filter( 'manage_edit-post_columns', 'add_cpt_column_wspe_113808' );
foreach( array( 'post', 'page', 'product' ) as $cpt )
add_action( "manage_{$cpt}_posts_custom_column", 'show_cpt_column_wspe_113808', 10, 2 );
function add_cpt_column_wspe_113808( $columns )
{
$columns[ 'cpt' ] = 'Post Type';
return $columns;
}
function show_cpt_column_wspe_113808( $column_name, $post_id )
{
if ( 'cpt' != $column_name )
return;
echo get_post_type( $post_id );
}