Copywrite
Forum Replies Created
-
Forum: Plugins
In reply to: Tag result empty- which table is used to sotre post tags?I found them, they weren’t showing because I hadn’t set any!
Forum: Themes and Templates
In reply to: include a pageOK got you thanks!
Forum: Themes and Templates
In reply to: include a pageOK so I change my original code from
<?php include (TEMPLATEPATH . '/sidebar1.php'); ?>
to<?php getsidebar('/sidebar1.php'); ?>
Forum: Themes and Templates
In reply to: include a pageSo I should change the instances of TEMPLATEPATH to
get_sidebar('/sidebar1.php')
for my code in index.php and archive.php?Forum: Themes and Templates
In reply to: include a pageThanks, so what is the difference between templatepath and get_sidebar- obviously sidebar is a function?
Forum: Plugins
In reply to: Adding rss feeds to automatically become postsI want to use it to get an rss feed of my articles from ezine articles
Forum: Fixing WordPress
In reply to: Security- separated databasesThanks for the answer Ipstenu, I have ok mysql skills, do I have to get a system administrator to manage security on the server (it is a dedicated server from mediatemple)or can I do it myself with a bit of poking around google?
Forum: Fixing WordPress
In reply to: Security- separated databasesThanks for the reassurance because I have heard that you must be very careful when using worpdress, so I can now sleep sound in the knowledge that my database is safe from hack via wordpress?
Forum: Fixing WordPress
In reply to: Frequently asked questionsThat looks very interesting so I will make a new category called FAQs and then make a page called archive-faqs.php Do I have to use the word faqs in the url in the dashboard when I create this category?(the slug as it was called in the link you gave)
Thank youForum: Fixing WordPress
In reply to: Frequently asked questionsThanks for the answer, I already have an archive.php that works for my category pages as I said above. So the idea is just do that?
Forum: Themes and Templates
In reply to: if else codemaybe I just need to get rid of the first bracket here?
<?php } else { ?>
Forum: Themes and Templates
In reply to: if else codeThanks for the reply, that doesn’t seem to work:
<?php /* If this is a category archive */ if (is_category()) { ?> <h1 class="pagetitle"> <?php if ( is_category('French Class')) { ?> <?php } else { ?> Learn <?php printf(__('%s', 'kubrick'), single_cat_title('', false)); ?></h1> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
Forum: Themes and Templates
In reply to: if else codeIt doesn’t work ??
<?php /* If this is a category archive */ if (is_category()) { ?> <h1 class="pagetitle"> <?php if ( is_category('French class')) ?> <?php } else { ?> Learn <?php printf(__('%s', 'kubrick'), single_cat_title('', false)); ?></h1> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
Forum: Themes and Templates
In reply to: if else codeThank you!
Forum: Fixing WordPress
In reply to: Why doesn't my theme have a category page?Thanks I’m checking out the link