iand
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Search box on Write pageYou could add them to the suggestion section of the codex for future versions:
http://codex.wordpress.org/Version_1.6Forum: Plugins
In reply to: How to have a Post show which Author Made it?Put
<?php the_author_posts_link(); ?>or<?php the_author(); ?>inside the loop to show the author name. See the classic theme for an example. You might also want to check out
http://codex.wordpress.org/Template_Tags/Forum: Fixing WordPress
In reply to: Is there a way to have a boilerplate template for regular posts?Have you looked at structured blogging? I don’t know if you can adapt something from it.
Forum: Fixing WordPress
In reply to: Hyperlink to Permalink Anchor?Just a guess:
<?php $posts = get_posts('numberposts=1'); foreach ($posts as $post) : ?>
<a href="#post-<?php the_ID(); ?>" target="_self"><?php the_title(); ?>...</a>
<?php endforeach; ?>adjust numberposts=1 to suit.
Forum: Themes and Templates
In reply to: adding a navigationtry
<?php include "navigation.php"; ?>
that would get the file from with the current theme directory.Forum: Fixing WordPress
In reply to: Got hacked..You might want to look at the bad behavior plugin too – it seems to block all GET requests, so might dissuade people from testing your security again.
Forum: Plugins
In reply to: Plugin for Static PublishTry WP-cache.
Forum: Fixing WordPress
In reply to: Alphabetized jump menu for categories/archives?Forum: Installing WordPress
In reply to: Do you have Chinese EditionI think you can localise it:
http://codex.xwd.jp/index.php/WordPress_Localization
and a chinese WP comunity too:
http://weciti.com/cnwp/Forum: Plugins
In reply to: RSS PosterOr are you looking for something like feedwordpress?
Forum: Fixing WordPress
In reply to: Wrong default Categoryyou could take a look at this plugin/mail script:
http://www.economysizegeek.com/?page_id=395 I recall that you could specify the category in the subject line of the e-mail.Forum: Plugins
In reply to: Sharing spam words list between blogsThere was the blacklist peering plugin by LaughingLizard. Im not sure if it ever got beyond the prototype stage though.
Forum: Fixing WordPress
In reply to: MISSING BUTTONS on Safari browserIf you searched using the title of the thread, you would find the answer.
Forum: Fixing WordPress
In reply to: Newbie Problem starting offThat is because the default archive page uses the_excerpt, not the_content. I have seen a hack (read editing core-files) that converts the […] to a link here somewhere so some searching should turn it up.
If you don’t mind using a plugin, you might want to look at http://doocy.net/mini-posts/ , which allows you filter the sideblog posts from the main content through the options page.