rob1n
Forum Replies Created
-
Forum: Plugins
In reply to: Adjust output of SyntaxHighligher to use the code-tag?<pre>itself is meaningless — just preformatted text, whereas<code>symbolizes code. I believe the standard is to use them together —<pre><code>which is more semantic.Forum: Fixing WordPress
In reply to: Plugin Automatic UpdateIt’s all automatic, I believe. As long as the plugin in question is in the WP Plugin repository, so that WP can get the information.
Forum: Plugins
In reply to: Google Sitemaps and WordPress 2.3 (Please help testing)Forum: Fixing WordPress
In reply to: Bug on wp_list_authorsForum: Installing WordPress
In reply to: 2.2 upgrade k2 theme = haywireK2 support forums.
Forum: Themes and Templates
In reply to: Updating for 2.2You mean widgetize?
Forum: Fixing WordPress
In reply to: Dashboard BorkedClear your cache?
Forum: Fixing WordPress
In reply to: .htaccess rewrite conflict problem with another script.Yes, create a .htaccess with JUST WordPress’ rewrite rules, then put that in blog/.
Forum: Fixing WordPress
In reply to: Are you allowed to change the WordPress credit?Yes, you can do whatever you want, basically.
Forum: Themes and Templates
In reply to: Theme81 not working properly..Plz HelpDid you run wp-admin/upgrade.php?
Forum: Installing WordPress
In reply to: Dashboard a little bareIt now loads eventually with an AJAX call — wait a little bit, it may be that your connection is slow so you don’t see instantaneous results.
Forum: Installing WordPress
In reply to: no tag in subversion for 2.1.3They’re tagged now.
Forum: Fixing WordPress
In reply to: Make sidebar change depending on page id<?php if (is_page(9)) : ?>
your code/html or whatever here
<?php endif; ?>Forum: Fixing WordPress
In reply to: Make sidebar change depending on page idYou can use the conditional tag is_page().
It takes one argument, which can be the page ID or name.
Ex:
if (is_page(2)) // page id == 2
-or-
if (is_page(‘About’)) // About page