WordPress -Post -Typen unterstützt Miniaturansichten
<?php
$args = array(
/* ... */
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
);
register_post_type('book',$args);
}
add_action( 'init', 'custom_post_init' );
gtamborero