404 Error On Custom Taxonomy Pages 2, 3, etc

Alright, so after lots of reading, copying & pasting, and plugin installation I have finally gotten it to work. This is using a custom post type: Sermons, a custom taxonomy: Series and allowing pagination on both pages. First I downloaded this plugin here: http://wordpress.org/extend/plugins/monkeyman-rewrite-analyzer/ Next I typed in the URL I wanted to change to … Read more

Drop Down Filter with CPT as Options for Search Form

use for search this form with custom post type list <form role=”search” method=”get” id=”searchform” action=”<?php echo home_url( “https://wordpress.stackexchange.com/” ); ?>”> <input type=”text” name=”s” id=”s” value=”Enter keywords …” onfocus=”if(this.value==this.defaultValue)this.value=””;” onblur=”if(this.value==”)this.value=this.defaultValue;”/><br /> <?php $types = get_post_types(); ?> <select name=”posttype”> <?php foreach ( $types as $type ) {?> <option name=”<?php echo $type->singular_label ; ?>” value=”<?php echo $type->singular_label ; … Read more

Custom Post Types on Custom Categories

Let’s go. First, create your custom post type (products): add_action( ‘init’, ‘add_post_type_products’ ); function add_post_type_products() { $labels = array( ‘menu_name’ => _x(‘Products’, ‘your_text_domain’), // the menu name text. This string is the name to give menu items. Defaults to value of name ‘name’ => _x(‘Products’, ‘post type general name’, ‘your_text_domain’), // general name, usually plural. … Read more