Support » Plugin: List category posts » custom taxanomy doesn't show

  • I registered several custom_post_types wit custom_taxanomies this way:

    register_post_type( 'einreichung',
    		array(
    			'labels' => array(
    				'name' => __( 'Einreichungen' ),
    				'singular_name' => __( 'Einreichung' )
    			),
    		'public' => true,
    		'has_archive' => false,
    		'rewrite' => array('slug' => 'kuenstlerforum1-einreichungen'),
    		'supports'           => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'page-attributes', 'post-formats'  )
    		)
    	);
    	register_taxonomy( 'monat-1', 'einreichung',
    		array(
                 'hierarchical' => true,
    			 'label' => __('Monat'),
    
    		)
    	);

    Then I tryed to get the content into a page by using this code:
    [catlist id=16 taxonomy=monat-1 numberposts=0 thumbnail=yes thumbnail_size=30,20 title_tag=span title_class="titel" excerpt=yes excerpt_size=25 excerpt_tag=span excerpt_class="teaser" excerpt_strip=no orderby=date order=asc posts_morelink="den ganzen Beitrag lesen" posts_morelink_class="more"]

    But unfortunately nothing shows up.

    What am I doing wrong?

    Thanx
    mxmanuel

    http://wordpress.org/plugins/list-category-posts/

  • The topic ‘custom taxanomy doesn't show’ is closed to new replies.