Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with wp-admin/index.php pageYou sure you access the right url? Where is your website? Whe re do you host your site? Where did you upload the WP files?
Forum: Themes and Templates
In reply to: Create a TemplateHire an artist/graphic designer. I have the same qualification as you do, but it’s got nothing to do with creating a nice template.
Forum: Plugins
In reply to: summaries not working in custom templatelink to the page?
Forum: Fixing WordPress
In reply to: Categories Don’t show at allThe link to category “A” won’t show up until you have a post in category “A”
Forum: Everything else WordPress
In reply to: Can’t Find function/wp-includes/pluggable-functions.php
Bookmark this; you can do search
http://redalt.com/xref152/trunk/nav.htm?index.htmForum: Themes and Templates
In reply to: CSS ShowcaseWhat’s on that page? I keep getting “403”
Forum: Themes and Templates
In reply to: Recent PostsPost your index.php here: http://pastebin.com and come back with the link.
What plugin do you use for recent posts and comments? (link, please)
Forum: Plugins
In reply to: summaries not working in custom templatethe_contenttemplate tag displays the full content;the_excerptdisplays the summary.Forum: Themes and Templates
In reply to: Category list showing most recent 1-2 posts in each categoryForum: Themes and Templates
In reply to: formatting the post_content outside of loopYou can call the following function
get_the_content()And then you may need to apply the filters; just peruse the_content()
Forum: Themes and Templates
In reply to: is_page fails in footerIf so, why would it do that?
What you retrieve with query_posts() determines the type of page. If your custom query_posts() retrieves a single Post, it will set is_single to true; if it retrieves Posts of a particular category, it will set is_category to true; if it retrieves a single Page, it will set is_page to true, etc..So, to make sure that your custom query_posts does not override the original type of page, do the following.
<?php $temp_query = $wp_query; ?>
// insert your custom query_posts and loop here
<?php $wp_query = $temp_query; ?>p.s. It’s different code for php 5
http://codex.wordpress.org/The_Loop#Multiple_Loops_Example_2Forum: Themes and Templates
In reply to: How many days ago a post is postedSearch for a plugin keyword “time since”
Forum: Themes and Templates
In reply to: is_page fails in footerIf you have some custom loop inside the page, that could set
is_pageto falseForum: Themes and Templates
In reply to: How do you change font size?We need the link to your site.
Forum: Fixing WordPress
In reply to: Comments in seperate div not workingTo save a query…
$temp_query = $wp_query;Then to restore and reset it…
$wp_query = $temp_query;
rewind_posts();P.S. It’ll be different code if you have PHP 5