About Sridhar Katakam
I am an independent WordPress web consultant with 10 years of experience in WordPress theme installation, customization, administration, maintenance, support, documentation, troubleshooting and PSD/design to WP.
Genesis and WordPress Tutorials
Session expired
Please log in again. The login page will open in a new tab. After logging in you can close it and return to this page.
Instead of using this
.home .content article,
.archive .content article {
position: relative;
}
I’d suggest to use
.content article {
position: relative;
}
Because the date will look weird on Blog page template.
Thanks for the tutorial though, we’re using this for our next theme that will be released in few weeks (Yes, it’s a free theme)
This is fantastic, thank you!
Thanks, this looks really great on my site! http://www.onedaysgrace.com/
But is it supposed to show up on the actual post as well? Once I click on a post, the custom date is blank.
Posting this here just in case you didn’t catch my post. Hope it helps.
I changed
is_archive
to
is_single
and now the post info shows on the single posts as well
I still need help on positioning the date.
Thanks
After hours of searching, I finally found this solution to moving the date. It’s pretty close to what I’ve been looking for.
I’ve used this in my Parallax Pro and when I use the css as above the date floats in the upper left corner. I can only get in the right area if I use -9999 but even then it is off a little bit. Do you know how I can solve this?
Thanks
Also noticed that the post info is not showing up on individual posts.
Thanks Sridhar
I changed
is_archive
to
is_single
and now the post info shows on the single posts as well
I still need help on positioning the date.
Thanks
Hi Sridhar,
Can this function be modified to display last updated? i’ve been trying to change it using the codex references but with no luck.
Thanks
add_action( 'genesis_before_entry_content','sri_add_date');
function sri_add_date () {
if (is_home() || is_archive()) { ?>
<?php }
}