How To Limit Hierarchical Pages Depth (For Custom Post Types) To Children Only
Is there a way to limit the creation of pages (custom post type) to a specific depth – e.g. level 1 (where 0 … Read more
Is there a way to limit the creation of pages (custom post type) to a specific depth – e.g. level 1 (where 0 … Read more
How do I get the page title of the upper most parent page of the page the visitor is currently on? Let me … Read more
I’d like to have a non-hierarchical custom taxonomy displayed in the add/edit posts admin screen for a custom post type. Obviously, when the … Read more
I need to display certain content depending on whether or not a page URL exists. I don’t want to check by title, because … Read more
Very similar to this previous question: Changing ‘rewrite’ argument after custom post type is registered I am trying to make MarketPress Products hierarchical … Read more
I have a hierarchical custom taxonomy which I can display using print_r(get_the_terms( $post->ID, ‘taxonomic_rank’ ));: Array ( [46] => stdClass Object ( [term_id] … Read more
I am trying to set up a multi-level custom post type structure with permalinks that look like authors/books/chapters, with authors, books, and chapters … Read more
I’m creating a theme with a custom post type for team members, I’ve also got the following page structure: about <– this is … Read more
I want to allow commas in tag names? For example, “hello, world” or “portland, or” but WordPress keeps separating them. I can do … Read more
How would I get the top-level parent of a given term? I am using wp_get_object_terms to get taxonomy terms on posts, but instead … Read more