<?php
add_action('init', 'je_news_register');
function je_news_register() {
$labels = array(
'name' => _x('News', 'post type general name'),
'singular_name' => _x('News', 'post type singular name'),
'add_new' => _x('Add New News Article', 'News Article'),
'add_new_item' => __('Add New News Article'),
'edit_item' => __('Edit News Article'),
'new_item' => __('New News Article'),
'view_item' => __('View News Article'),
'search_items' => __('Search News Articles'),
'not_found' => __('Nothing found'),
'not_found_in_trash' => __('Nothing found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'menu_icon' => get_stylesheet_directory_uri() . '/images/icons/news-admin.png',
'rewrite' => array(
'slug' => 'news',
'with_front' => false,
),
'has_archive' => 'news',
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => 5,
'supports' => array('title','editor','thumbnail')
);
register_post_type( 'je_news' , $args );
}
add_action("manage_je_news_posts_custom_column", "je_news_custom_columns");
add_filter("manage_edit-je_news_columns", "je_news_edit_columns");
function je_news_edit_columns($columns){
$columns = array(
"cb" => "<input type=\"checkbox\" />",
"title" => "Title",
"description" => "Description"
);
return $columns;
}
function je_news_custom_columns($column){
global $post;
switch ($column)
{
case "description":
the_excerpt();
break;
}
}
?>