Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
What you are actually asking is unclear. It is very easy to add tags and categories right from the Wordpress interface when you're logged into the admin Dashboard. Adding media is also easy from the icons right above each new post text box.
 
What you are actually asking is unclear. It is very easy to add tags and categories right from the Wordpress interface when you're logged into the admin Dashboard. Adding media is also easy from the icons right above each new post text box.

Sorry, what I'm trying to do add the blog into my current website, a well as having the WordPress blog itself. Does that make it clerer?
 
If you used:
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('./wordpress/wp-load.php');
query_posts('showposts=1');
?>

change it to:
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('./wordpress/wp-load.php');
?>

Then:
<?php query_posts($args); ?>
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>

Look at http://codex.wordpress.org/Function_Reference/query_posts
and change the $args in the query_posts function to show what you need it to be.

----------

I'm confused...you already had your site up as a wordpress blog...why are you converting it?

http://hampshiredoeyouthforum.uphero.com/blog/wordpress/

Why not just install wordpress on the root rather than the convoluted directory structure and then use pages for your static elements?
 
If you used:
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('./wordpress/wp-load.php');
query_posts('showposts=1');
?>

change it to:
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('./wordpress/wp-load.php');
?>

Then:
<?php query_posts($args); ?>
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>

Look at ://codex.wordpress.org/Function_Reference/query_posts
and change the $args in the query_posts function to show what you need it to be.

----------

I'm confused...you already had your site up as a wordpress blog...why are you converting it?

://hampshiredoeyouthforum.uphero.com/blog/wordpress/

Why not just install wordpress on the root rather than the convoluted directory structure and then use pages for your static elements?


I think it will be difficult for him .
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.