Website WordPress Conversion help.
-
I have added a blog to my site which can be seen here: http://www.beckin.com/blog/index.php
As you can see I can see my post but there is no link for people to post comments and etc. I have added this above my head tags
<?php /* Short and sweet */ define('WP_USE_THEMES', false); require('wp-blog-header.php'); ?>And this in the body:
<?php $posts = get_posts('numberposts=10&order=ASC&orderby=post_title'); foreach ($posts as $post) : start_wp(); ?> <?php the_date(); echo ""; ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endforeach; ?>[Please post code snippets between backticks or use the code button.]
What is is needed to get the post a comment link to show and etc? I think I would also like a link that will allow people to post there own articles also.
Thanks!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Website WordPress Conversion help.’ is closed to new replies.