Tagged Questions
0
votes
1answer
68 views
Is it possible to have different header style blog titles in different categories?
For my category titled 'mindset' I would like to use the following style on my post header:
background: none repeat scroll 0 0 grey;
border-bottom: 5px solid #83990A;
However for my 'news' category ...
-2
votes
1answer
71 views
Weird html output of single_cat_title - is not inside of the html element?
I'm displaying a single "featured" post at the top of the blog index page, and category pages.
I'm using this conditional to display the category name of the category page if it is a category page, ...
0
votes
3answers
90 views
How to Remove a Title from All Category and Tags Page?
I am trying to remove the title from all my category and tags page.
So far, I have been using this code http://pastebin.com/xxmyw7BP. It works but not perfectly. The title of my category and tag ...
0
votes
1answer
721 views
How to get post category title within the loop?
I'm stuck in a rather simple task: to get the category title for the current post, within the loop, to be used in the function (not to be automatically printed). Any ideas?
0
votes
1answer
327 views
how to display page title only for child category pages
I apologize if this is a dumb question, but I am just learning PHP and Wordpress. It's probably very simple.
I have a site where the top-level nav is all parent categories, with the child categories ...
0
votes
3answers
144 views
How do I include the category next to the title of a post?
On the main page in WordPress all I want is the category to come before the title of the article posted. So for example if it's a Review, I'd like the article name to be Review: Super 8.
Okay so if ...
1
vote
1answer
319 views
Add title, post content, and category like add_post_meta and update_post_meta
How can I update/add a new title, post content, and category to a post with hard PHP code similar to add_post_meta(), update_post_meta()?
0
votes
2answers
621 views
Output Title of Post's Current Category
How do I output the current category title for each specific post?
<?php query_posts('category_name=group&posts_per_page=10'); ?>
<?php if (have_posts()) : ...