I can’t seem to get WordPress up!
-
Right now, I have these codes:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml/DTD/xhtml-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’);
?>; charset=<?php echo get_settings(‘blog_charset’); ?>” />
<meta name=”generator” content=”WordPress <?php $wp_version ?>” />
<!– leave this for stats –>
<link rel=”alternate” type=”text/xml” title=”RSS” href=”<?php
bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
</head>
<body><!– // loop start –>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 id=”post-<?php the_ID(); ?>”><b>:: <?php the_title(); ?> :: </b> |
<b> <?php the_date(‘d-m-y’,”,”,true); ?> </b> | <?php
comments_popup_link(__(‘0 Comments’), __(‘1 Comment’), __(‘%
Comments’)); ?></h1><?php the_content(); ?>
<?php link_pages(‘
Pages: ‘, ‘
‘, ‘number’) ?><div align=”right”>
<br><br>
<div align=”left”><?php mdv_comment_plugger(‘<b></b>’); ?></div></div>
<?php comments_template(); ?>
<!– // this is just the end of the motor – don’t touch that line either 🙂 –>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?><div align=”center”>Powered by <a
href=”http://wordpress.org”>WordPress</div>
and this, right at the top of my page:
<?php require(“/home/darkxheart/public_html/wp/wp-blog-header.php”); ?>
What am I doing wrong?
The topic ‘I can’t seem to get WordPress up!’ is closed to new replies.