alan-kay
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adaptability 0.9 Beta Theme For WordPress 2.0HA! You guys are so funny but you are right.
Well as K2 uses an options page. Adaptability uses parts of the same K2 options file to change colou schemes and theme options. This will be fixed for the next realease.
Kafkaesqui, as concerns ‘You may want to explain (on your site)’ … consider it done. Thanks for your suggestion.
Forum: Fixing WordPress
In reply to: Help! My WordPress Blog Contains 2,988 Categoriesthanks.
Forum: Themes and Templates
In reply to: Which File Does The RDF Code From?Hi
Thanks, but my problem is still not resolved.I want to change the RDF code so that there is no text indents in the code view. When I look at the loop there is only the following statement
“<!– open rdf –>
<?php trackback_rdf(); ?>
<!– close rdf –>”
What file is deciding the displayed code should be indented?Forum: Themes and Templates
In reply to: Different Templates For Different CategoriesHi
Thanks problem sorted.After I did what was recommended above in relation yo my problem, single post pages still referenced the default category template so I placed the following piece of code in the single.php file:
<?php
$post = $wp_query->post;
if ( in_category(‘9’) ) {
include(TEMPLATEPATH . ‘/single-9.php’); }
elseif ( in_category(’13’) ) {
include(TEMPLATEPATH . ‘/single-13.php’); }
elseif ( in_category(‘2’) ) {
include(TEMPLATEPATH . ‘/single-2.php’); }
else {
include(TEMPLATEPATH . ‘/single-default.php’);
}
?>YES!
Forum: Fixing WordPress
In reply to: Write Form Input ValueGreat thanks. I compiled a tutorial with images showing others how to do this.
How To Set Post’s To Include Preset Text Tutorial.