Joshua Sigar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Date show<quote>
… When there are multiple posts on a page published under the SAME DAY, the_date() only displays the date for the first post
</quote>Forum: Fixing WordPress
In reply to: Show IDUse the following template tag within the Loop.
the_ID()
Forum: Plugins
In reply to: Pull current category ID informationWell, then don’t loop thru the cat IDs, just spit out the first one.
Forum: Fixing WordPress
In reply to: <!–more–> fails when index loads from templateWell, actually, you may be able to do something like this
<?php query_posts('cat=-0'); //gets all posts
$wp_query->is_home = true;
load_template( TEMPLATEPATH . '/index.php'); //loads index
?>I’m not responsible for any side effects ??
Forum: Everything else WordPress
In reply to: Question Regarding ArchivesIn your sidebar.php there’s probably this sort of logic
<?php if (is_home()) : ?>
<h2>Attorneys</h2>
...
...
and so on...
<?php endif; ?>
…which means that “Attorneys” link list and others will only show on frontpage.
If you don’t know how to fix it, post the content of your sidebar.php at https://pastebin.com and come back with the link.
Forum: Fixing WordPress
In reply to: <!–more–> fails when index loads from templateIt’s because probably, by design, WP displays full content in Single Post view and Page view–your case.
Forum: Fixing WordPress
In reply to: How do I downgrade to a lower version?I can’t tell much without looking at your site, but…
I can’t get a space to appear between paragraphs
Usually just CSS issue. Show us your site and we’ll fix it.and images won’t show
It could be CSS, could be your using the_excerpt instead of the_content template tag,…I find it, how do you down grade? Is it just a matter of uploading the old version of the files?
It’s a risky to do this as the database schema may have change. There was a “WP downgrader” plugin if you want to search but I strongly suggest that you let us help fix your problem with 2.0.2Forum: Fixing WordPress
In reply to: Moving WP to a new server – 2 queriesShould I delete it now (ie after the upgrade)?
I *suppose* you don’t need to delete it. But if you do encounter an issue you could delete the cache.bla..bla..
Search https://codex.www.ads-software.comForum: Themes and Templates
In reply to: error creating archive.phpPost the __latest code__ at https://pastebin.com and post the __latest error message__ here.
Forum: Fixing WordPress
In reply to: Typewriter effect?How did you add the script on your wordpress installation? You can’t insert that when you write your post. But you can insert it to index.php
Forum: Fixing WordPress
In reply to: Typewriter effect?Can you elaborate on this typewriter effect? Can we see that simple html page which has the effect?
Forum: Themes and Templates
In reply to: error creating archive.phpPost the whole content of archive.php here https://pastebin.com
Forum: Themes and Templates
In reply to: Posts like “?p=18” are generated without backgound imageIf you can’t use the theme editor then you have to use FTP–no other way.
Forum: Fixing WordPress
In reply to: Neater Implementation of AsidesDon’t really understand the last part of this code. If (!$asides), isn’t that if it’s not asides? But then it says $asides=true? I’m a bit confused by this one.
It’s basically checking if previous post is an aside. If it’s not, then we need to insert the opening div. Then we set $aside to true, so that in the next iteration of loop, we know that previous post is an aside and opening div has been inserted so we don’t need to insert the opening div again.
I’m a bit unsure about why there’s $asides_end = true but then goes to false afterwards. Any ideas?
No clue, either. You could delete the first and not break a thing.
Ok last one is I don’t understand why there is another asides box end statement here?
Well, I have a question. Why is there closing ul tag there? When do we open it?
Forum: Themes and Templates
In reply to: Posts like “?p=18” are generated without backgound imageDo you have different header file for index and single? Either way, post here https://pastebin.com the content of header.php and come back with the link.