is this doable? so i could have say, a left aligned image, with the title next to it, instead of sitting up on top of everything? i've been doing some googing to no avail...
modifying wordpress posts so that the title is in the content and not as a header?
Collapse
X
-
Tags: None
-
how exactly woul di go about doing a setup somewhat like this is a stylesheet? i thought about it a bit but didn't come up with anything that i know....
XXXXXXXXXXX---------------------------------------
X__________X_______TITLE OF THE POST HERE
X__________X
X__THUMB__X____written content for the post here
X__________X
X__________X
XXXXXXXXXXX
i justdon't see how i could wrap <?php the_content(''); ?> around the title div like that?Last edited by Angry Jew Cat - Banned for Life; 06-28-2007, 04:05 AM.Comment
-
I would do it the other way - bring the title in the post content too.
You have this line in your loop:
1. Give it a display:none; - with this you can see it in your admin area but not on the blog.PHP Code:<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
2. Install Exec-PHP, so you can write code in your postsPHP Code:<h2 style="display:none;"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link o <?php the_title(); ?>"><?php the_title(); ?></a></h2>
3. Write your post: thumbnail (style="float:left; margin:14px 1em 4px 0; padding:0px;") and <div><p>YOUR TEXT<p></div><br clear="left" />PHP Code:<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
Hope this makes sense to you.Comment

Comment