Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?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, // Position the menu item after posts
			'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;
		}
	}
?>