Eigene Kategorien für Beiträge sind ganz cool aber für manche Seiten ist ein eigener Menüpunkt für Posts zu einem gewissen Thema sinnvoll. Z.B. bei einer Seite der Feuerwehr die Einsätze und bei meinem Blog die Projekte.
In functions.php des gewählten Themes:
add_theme_support('post-thumbnails', array('post', 'page', 'project')); //activate thumbnails add_action('init', 'projectPostType'); function projectPostType() { register_post_type('project', array( 'labels' => array( 'name' => __('Projekte'), 'singular_name' => __('Projekt') ), 'public' => true, 'has_archive' => true, 'supports' => array( 'title', //titel field 'editor', //content text field 'thumbnail' //support thumbnails in custom post type too ), 'taxonomies' => array('post_tag') //supports tags in custom post type too )); }
Und an der Stelle an welcher der custom post type ausgegeben soll:
array('project') ) );?>
Schreibe einen Kommentar