audiosq
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to show user post counts by categorytake 2
Forum: Fixing WordPress
In reply to: Put Category in Title AutomaticallyOk.. that was the wrong place. I found the code a few lines down and I’ve got it to look like it’s part of the title. The only problem is I want it to be part of the title. As in one link to the post. As of now it’s two seperate links, one to the category and one to the post. The reason I want one is if someone were to retweet the post then I lose the category in front of the title. Is there anyway to make it part of the title? Here’s the code.
<h<?php if(!is_single()) echo('2'); else echo('1'); ?> class="title"><?php the_category(', '); ?> - <?php if(!is_single()) echo('<a href="'. $link .'">');?><?php the_title(); ?><?php if(!is_single()) echo('</a>'); ?></h<?php if(!is_single()) echo('2'); else echo('1'); ?>>Thanks!
Forum: Fixing WordPress
In reply to: Put Category in Title AutomaticallyThanks! I guess I’m a little too dumb though. I’ve put it in a couple places around my title tag and I can get it to say the category in random places around the title, but not in the title itself. Here’s the code around the title tag. Where would it go exactly?
<a href="<?php if(isset($post->post_type)) echo(get_bloginfo('url') . '?post_type=' . $post->post_type); else echo('#'); ?>" class="bubble"><?php the_title(); ?></a>Thanks again!
Bruce
Forum: Fixing WordPress
In reply to: Show full child pages on front pageThanks, but that still puts them all like one page. Ok, so here’s the link http://tangierhotels.net (its a work in progress) In the middle column it list the posts in blog style. You’ll note that each post is in its own white box. I want the same look for the child pages of a particular page. Is there anyway I can just do some changes to the php for that page that has it call up pages I ask for by ID instead of the post? The wonderful suggestions above just cause the pages to all list on one long white column with no blue space between each page. Thanks again.
Forum: Fixing WordPress
In reply to: Show full child pages on front pageThat plugin sort of works. It pulls up all the pages and makes them like one long post. I want them to appear like separate post. I imagine the query and content tags would work if I had any real knowledge of php. I’ll try to roll up my sleeves and figure it out, but if anybody wanted to chime in before I’ve done that… I’d be thrilled.
Forum: Fixing WordPress
In reply to: Submit URL like DiggDid you ever find a solution? I want to do exactly that. I tried to use pligg, but really it just sucks a CMS.