Support

Account

Home Forums General Issues Archive / Listing as selectable 'Page' Reply To: Archive / Listing as selectable 'Page'

  • you can add custom post type where wp will create posts when you create taxonomies and than create template for this post type but its a very long way =)))

    function taxpostcreate( $a,$b,$c )
    {
    $post = array(
      'post_name'      => 'term'.$b,
      'post_title'     => 'term'.$b,
      'post_status'    => 'publish',
      'post_type'      => 'terms_scrapyard',
      'post_excerpt'   => $b,
    );  
    
    wp_insert_post( $post, $wp_error );
    return $a;
    
    }
    
    add_filter('created_term', 'taxpostcreate', 10, 3);

    something like that