• I am trying to add this bit of code, taken from a tutorial on making custom posts:

    add_action('init', 'portfolio_register');
    
    function portfolio_register() {
    
    	$labels = array(
    		'name' => _x('My Portfolio', 'post type general name'),
    		'singular_name' => _x('Portfolio Item', 'post type singular name'),
    		'add_new' => _x('Add New', 'portfolio item'),
    		'add_new_item' => __('Add New Portfolio Item'),
    		'edit_item' => __('Edit Portfolio Item'),
    		'new_item' => __('New Portfolio Item'),
    		'view_item' => __('View Portfolio Item'),
    		'search_items' => __('Search Portfolio'),
    		'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() . '/article16.png',
    		'rewrite' => true,
    		'capability_type' => 'post',
    		'hierarchical' => false,
    		'menu_position' => null,
    		'supports' => array('title','editor','thumbnail')
    	  ); 
    
    	register_post_type( 'portfolio' , $args );}

    It is giving me errors… why?? Every time I have tried to add one thing or another to functions.php, I end up breaking my site.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘I get errors whenever I add anything to functions.php’ is closed to new replies.