Joshua Sigar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Umm…. Something funky D=It looks like you need to contact your host.
Forum: Everything else WordPress
In reply to: Suggestion to devs for this forum:Well, I know of similar, yet better feature: a link to first unread post.
Forum: Themes and Templates
In reply to: 3 columns by 3 rows template?Btw… I have 9 categories and in each box, I want to show posts from just one of the categories… how can I achieve that?
http://rhymedcode.net/1001-wordpression-loops/grouped-by-category/
Forum: Themes and Templates
In reply to: How can I display my different link Categoris?You can use the following template tag
http://codex.wordpress.org/Template_Tags/wp_list_catsForum: Fixing WordPress
In reply to: Time not showing up on main pageGo to index.php and find the template tag that output the date/time; either the_date() or the_time().
Here’s how to modify the output for each tag
http://codex.wordpress.org/Template_Tags/the_date
http://codex.wordpress.org/Template_Tags/the_timeForum: Plugins
In reply to: Header Error after adding, then deleting Poll Plug-in…The following’s gonna help you troubleshoot it
http://codex.wordpress.org/FAQ_Troubleshooting#How_do_I_solve_the_Headers_already_sent_warning_problem.3FForum: Fixing WordPress
In reply to: How can ISomething like this?
<table>
<tr>
<td><?php the_date(); ?></td>
<td><?php the_title(); ?></td>
</tr>
</table>
Forum: Fixing WordPress
In reply to: Remove the `<p> tag in template tag the_content?Hmm, I see. But
wpautopis still applied, though, which is not desired in this case.Forum: Fixing WordPress
In reply to: Remove the `<p> tag in template tag the_content?@kafkaesqui,
doesn’t the code on the post above give the same output as <?php the_content(); ?>Forum: Themes and Templates
In reply to: help!As far as I understand your question, macmanx already provided the answer.
But then you say, “ok, but you can’t add the absolute path.”
I said, “Huh?”Forum: Themes and Templates
In reply to: help!ok, but you can’t add the absolute path.
What?? Where?? Huh?????I dont quite get it either? You mean something like the following?
<a href=“<?php the_permalink() ?>�><?php the_permalink()?></a>Forum: Fixing WordPress
In reply to: How do I set up a trackback link?How will I know if anyone has pinged me?
It will show up with the rest of regular comments.Forum: Fixing WordPress
In reply to: How do I set up a trackback link?Go to the following page and read the whole thing between the post content and the comment form. The trackback link is already there.
Forum: Fixing WordPress
In reply to: Warning: array_keys(): The first argument should be an array in…Are you trying to sort arrays of object? You need a custom function for that.
Try the following or google for “sort objects in php”
http://us3.php.net/manual/en/function.asort.php#20433