jkeyes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: A way to list all posts for an archive page?Here’s some PHP that’ll list all of your posts as links:
<?php $myposts = get_posts("numberposts=-1"); foreach($myposts as $p) : ?> <a href="<?php echo(get_permalink($p->ID)); ?>"> <?php echo($p->post_title); ?> </a> <?php endforeach; ?>
Ref: get_posts documentation.
Forum: Requests and Feedback
In reply to: Support forum RSS favourites feedYeah all’s rosy now in both favorites and topic feeds. Thanks a million.
Sorry forgot this it was a wp-admin issue you were having.
If you want to set up a temporary account and email me details you can, I understand the trust issues involved here so it’s no problem if you don’t want to.
Forum: Fixing WordPress
In reply to: Page URL in SidebarGood stuff. Can you mark this topic as resolved now.
Forum: Fixing WordPress
In reply to: Embed Google Video not workingA reply to a previous topic recommends WP-ExtremeVideo. I have no experience with it but it may help you.
Forum: Themes and Templates
In reply to: How-To: Highlight Nav if Parent Is…I haven’t tested this but something like this should work for you:
<?php if (is_page()) { // find root parent page $root = $post; while ($root->post_parent != 0) { $root = get_page($root->post_parent); } // highlight nav li if ($root->post_name == 'about') { echo('class="current" '); } } ?>
Forum: Fixing WordPress
In reply to: Page URL in SidebarCheck your permalinks (Options->Permalinks) are setup correctly.
Forum: Plugins
In reply to: Insert html via pluginI have a similar requirement but I can’t find a filter point either. Pity.
If you have a public link to your installation I’ll take a look.
Forum: Requests and Feedback
In reply to: Support forum RSS favourites feedI still have the same error, to test just click the link included above.
Forum: Fixing WordPress
In reply to: Too much space between the wordsCool, you should now mark this topic as resolved.
Forum: Fixing WordPress
In reply to: Write Post Screen (Somethings Missing.)Have you tried a hard refresh of the page?
Ctrl-Shift-r
(Firefox),Ctrl-F5
(Internet Explorer).Forum: Fixing WordPress
In reply to: Firefox 2.0 Alignment IssueI just tried with FF 2.0.0.1 and it renders just fine. Have you tried a hard refresh of the page –
Ctrl+Shift+r
?Forum: Fixing WordPress
In reply to: Too much space between the wordsYou need to changes the text-align CSS property for the .post selector in your theme from:
text-align: justify;
to:
text-align: left;
Go here for more information on the text-align property.
Forum: Fixing WordPress
In reply to: Center Title In PagesThat shouldn’t center the posts as well as it only selects the h2 tag.
To make it more precise you could add a class=”post_title” to your title h2, and change the CSS rule to:
.post_title { text-align: center; }