0
votes
1answer
34 views

How to differentiate the homepage structure from the category page structure in WordPress template?

I am very news in WordPress world and I am finding some difficulties with creation of a personal template. I want implement a blog like this one (that is using WordPress): ...
0
votes
0answers
25 views

How to create a category template for each category hierarchy level?

Is it possible to create a category template for each of the available hierarchy levels? Here's the structure I want to replicate: Product A (level 0) Subproduct A1 (level 1) Subproduct A2 (level ...
0
votes
1answer
208 views

Paginate WordPress Category Pages

I am using the following query on my category.php template: <?php $paged = (get_query_var("paged")) ? get_query_var("paged") : 1; query_posts("posts_per_page=2&paged=".$paged); ?> ...
1
vote
2answers
128 views

How to sort list of custom posts to get view like a tree of posts under categories and their children's categories?

I'm new here and my english isn't perfect so I'm sorry for this :) I'm here because I'm workin on site with post list sorted by category and I have problem with sort out my posts in categories and ...
0
votes
2answers
131 views

Display all posts from specific categories on a page

I want to display all posts from specific categories on a single page. Therefore I edited the page.php file in my theme folder. I added an 'if-clause' to check which page currently being displayed and ...
0
votes
1answer
88 views

Assigning certain pages or posts to use the template of the parent page or category

I created a website that's using Wordpress as its CMS. There are parent pages -> sub categories -> content within each sub ...
0
votes
1answer
344 views

List all posts in a category with query_post() function

I'm a C programmer, konw little about PHP. I built a Blog with wordpress. Yestoday, I try to create the page www.abc.com/server, this page would list all posts which belong to server category. I ...
0
votes
0answers
695 views

category page template in Genesis [closed]

I am using WordPress 3.4.2 and i have created a category name wall and I have added 5 posts with category wall. And now i want to create a page with site.com/wall_page and it should only display post ...
0
votes
1answer
130 views

Problem with different query loops (and “main loop”) on category template page!

so, heres the problem: i've created a category-template (category.php) with two query loops and the main loop (in which the content from the category should get looped in). if i now click on a ...
0
votes
1answer
140 views

Custom Post Type order Title ASC

I´d like to display all car manufacturer in order by title (e.g. "Merecedes") and order from lowest to highest values (e.g. "A-Class") "ASC", too. It should looks like a glossary. Page: Cars A ... ...
1
vote
1answer
352 views

display posts from specific category on a page , in thematic child theme?

i have a blog page template , i need to make it display posts from specific category called news this is the template , i use thematic framework child theme <?php /** * Template Name: Blog * * ...
1
vote
1answer
70 views

How do you create a custom template to display a category with an image and related posts below?

I am trying to create a custom template that can give the following effect... Category Name A (with image) post with category name A post 2 with category name A post 3 with category name A ...
0
votes
1answer
260 views

Detect category choice for posts with multiple categories

On my single template, I wish to show other posts in that category. Its essential that I use the route they chose, i.e. if they clicked Category 1, then Post A, if Post A is also Categorised as ...
-1
votes
2answers
107 views

What defines a post as portfolio page content?

I have three types of content, Posts which I have defined as Blog and categorise accordingly, Slider Images defined by a specfic category, and Pages. I want to have content as portfolio on a profolio ...
0
votes
1answer
758 views

Using get_terms() to list terms from one custom taxonomy AND from one specific built-in category

I'm trying to get the terms of a taxonomy (kind) and the number of content they have but only for a specific category (get_parent_page_slug() = city name = category slug). This is what I have so far: ...
0
votes
1answer
59 views

Creating links to a page displaying posts from a particular category

Ok so at the moment I have a page which displays a list of categories within my Taxonomy (event-themes), here's the code: <div id="themeSearch"> <h1 class="mainSectionHeader">By ...
1
vote
1answer
141 views

Page display certain Category Posts

I want to do almost exactly this: http://codex.wordpress.org/Pages#A_Page_of_Posts But Im confused by the last line: Save this to pageofposts.php and then assign PageofPosts as the Template ...
2
votes
1answer
218 views

How to override Category rendering mechanism

Currently for every category there is a separate template (category-1.php, category-2.php, etc..), in my case there is over a hundred of them. I want refactor it to 4, so for instance if $cat is in ...
0
votes
1answer
215 views

Dynamically Adding Category Specific Content To Specific Category & Subcategory Pages

I'm working on an internal project/idea (a directory of sorts for a vertical market) where I will have 40 Categories with each Category having (potentially) 30 Sub-Categories. For each Category and ...
2
votes
1answer
371 views

Listing Parent, Child and GrandChild Categories and then the PostTitles on Page Template !

What I want to do is a loop like this is something like this I'm really sorry but its hard to format here! I going to put this short url http://pastebin.com/dEdKzgJz so you can see it better... Can ...
1
vote
2answers
2k views

Listing Category 'child_of' by slug rather than ID

I want to list categories belonging to a parent. The problem is using category id's isn't useful and makes things harder to understand. Is there any easier way to list categories belonging to a ...