Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

miles01110

macrumors Core
Jul 24, 2006
19,260
36
The Ivory Tower (I'm not coming down)
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.
 

JackT06

macrumors 6502
Original poster
Jul 24, 2009
293
0
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?
 

JackT06

macrumors 6502
Original poster
Jul 24, 2009
293
0

manueld

macrumors 6502
Jun 8, 2009
257
3
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?
 

SimonDevise

macrumors newbie
Sep 21, 2012
1
0
USA
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.