hexdj
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating a very very simple CMS from WP?If you wanna keep the look of your site you might have to convert your current look into a WP theme.
You have to be familiar with HTML/CSS for this, if you wanna see a very basic tutorial on how to achieve this, look at Aneko’s WP Theme creation here.
Forum: Fixing WordPress
In reply to: List all posts in one CategoryActually I just figure it out myself, here’s how:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <@>" title=""><?php the_title(); ?></@> <?php endwhile; else: ?> <?php endif; ?>Just saved in category.php and now all categories show the list of posts in each of them.
Now what I would like to know is what function will return the category name?
I want to have the name of my category on top, so it should be something like:
<h3><?php get_category_name(); ?></h3>
that function probably does not exist but it would be nice 🙂
Forum: Fixing WordPress
In reply to: Organizing pages and categories in non-alphabetical orderTry David Coppit’s Category Order plugin. Follow the link and it’s at the end of the page, it will let you sort your categories in any way you want them.
Forum: Installing WordPress
In reply to: Error establishing a database connectionWell, if you ARE using godaddy you are most likely to have to change your DB Host address, they usually look like h50mysql503.securenet.net and I see your site is trying to connect to localhost.
If you did perform a search about the subject you should have seen something about that.
Forum: Installing WordPress
In reply to: Error establishing a database connectionIf you guys are using godaddy as your hosting provider, you might have to swicth Operative System (WordPress usually works if you use Linux/PHP). But it could be something else as well, if you do a search you can find more solutions.