ctzn_erased
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-query / Can you order by Date AND Title?Very interesting.
I don’t have any plugins in use so it can’t be that, it’s probably the way I’ve shoddily built this theme! How jolly frustrating.
If that is the case then, sorry for semi-wasting your time but at the same time, thank you for all your help!Forum: Fixing WordPress
In reply to: wp-query / Can you order by Date AND Title?This is still just ordering the events by title and disregarding the time.
Thanks for your help, I’m sorry that I keep coming back and saying things aren’t working!
I think I’m just going to have to give up on this one…Forum: Fixing WordPress
In reply to: wp-query / Can you order by Date AND Title?Again, thanks for your reply.
Unfortunately this displays the post ordered by title and completely disregards the post time!
Sad face.
Forum: Fixing WordPress
In reply to: wp-query / Can you order by Date AND Title?Hi,
Thanks for your response. I added the code in, and whilst it didn’t break anything it didn’t change anything either.
My posts are still displaying:14:30 – Body and Data
14.30 – Archives & Whatever
14.30 – Content and DisseminationAs all these posts have the same post time, I then want them ordered by title.
Could this be that WordPress includes seconds in post_date – which are of course uncontrollable via the dashboard? So in terms of seconds, there are no matching dates to then re-order?
Forum: Fixing WordPress
In reply to: is_front_page and other conditionals ignored by Internet Explorer?Forum: Fixing WordPress
In reply to: is_front_page and other conditionals ignored by Internet Explorer?Interestingly I completely removed the redirect function, refreshed my cache, etc etc, and Internet Explorer STILL redirects and continually refreshes.
What is up with this bad boy?Forum: Installing WordPress
In reply to: is_category for multiple categories.It doesn’t matter – I’ve totally re-thought the site’s structure.
Forum: Installing WordPress
In reply to: is_category for multiple categories.<?php
if ( is_category(’11’) ) {
?>
<div id=”subnav_one”>
Content
</div><?
} else if ( is_category(’12’) ) {
?>
<div id=”subnav_two”>
Content
</div><?
} else if ( is_category(’13’) ) {
?>
<div id=”subnav_three”>
Content
</div><?
} else if ( is_category(’11 && 12 && 13′) ) {
?>
<div id=”whole_new_subnav”>
Something totally different.
</div><?
} ?>It’s the last statement I can’t quite get my head around.
Perhaps it isn’t even possible.
Hope this makes sense to you.Forum: Installing WordPress
In reply to: is_category for multiple categories.I want to create a new statement for when ALL THREE categories are accessed in the same archive.
Categories 11, 12, and 13 have their own subnav absolutely positioned according to which archive you’re viewing.
When I view the archive for 11, 12 AND 13 together, I don’t want to see 13’s subnav.Does that make sense?