Joshua Sigar
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Turning a page into an external hyperlinkHere’s what you need; minus the “loading in a new window”
http://txfx.net/code/wordpress/page-links-to/Forum: Themes and Templates
In reply to: Valid XHTML 1.0 Strict!just wrap that “input” with “p,” or “div”
Forum: Fixing WordPress
In reply to: How to show just excerpts on main page?<a href="<?php the_permalink() ?>">Read more...</a>Forum: Themes and Templates
In reply to: Sidebar Calendar resizing issue in Firefox onlyI see. Tricky, it bleeds over because the sidebar is fixed while the text has to resize.
Solution one, make the sidebar resizable.
Solution two, which is implemented more, just make sure that the sidebar wide enough to accomodate one or two text size increment.
There seems to be no way to prevent this occurring,
I don’t think so, either.Forum: Themes and Templates
In reply to: Sidebar Calendar resizing issue in Firefox onlyDid you really set the calendar table width to some fixed pixel units?
Link to the site?
Forum: Fixing WordPress
In reply to: How to show just excerpts on main page?Change the following…
<?php the_content(__('(more...)')); ?>..to …
<?php the_excerpt(); ?>Forum: Everything else WordPress
In reply to: Export post – text onlyWrite your own script.
Forum: Fixing WordPress
In reply to: Changing Number of Posts not workingProbably it’s something with the Theme.
Post your Theme’s index.php here: http://pastebin.comList your plugins that you use also.
Forum: Themes and Templates
In reply to: IE and huge gap between posts…Try sizing down the first image.
Forum: Fixing WordPress
In reply to: page management questionYou need to pass parameter to the template tag to specify the order
http://codex.wordpress.org/Template_Tags/wp_list_pagesForum: Fixing WordPress
In reply to: “The Date” TagBy default, the_date() output is formatted according to “Options -> General -> Default Date Format.”
You could change the default format, or you could customize it by passing parameter to the_date() http://codex.wordpress.org/Template_Tags/the_date
Forum: Fixing WordPress
In reply to: Call Function placement in post.phpPost your post.php here: http://pastebin.com
Forum: Fixing WordPress
In reply to: func excerpt() working not correctI can’t understand what you’re trying to say.
Forum: Plugins
In reply to: WordPress Article Directory for Pages?Say, you want category A, B, C. Create Pages with title A, B, and C.
Say, you want to categorize Page 1 as A. Create a Page 1 with parent page A.
And so on…Forum: Fixing WordPress
In reply to: Checking if there are next postsI see. Well, you could always grab a piece of code from the core and make your own custom functions.