charson Posted June 25, 2009 Share Posted June 25, 2009 I'm designing an article directory with Wordpress at http://askcrazy.com. I want to find out the code i can insert into the theme so that people can copy articles like it appears on this webpage http://www.articledashboard.com/ezineready.php?id=950284 Response will be very much appreciated. The PHP code looks like this <?php get_header(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content(); ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit.', '<p>', '</p>'); ?> <?php get_sidebar(); ?> <?php get_footer(); ?> Link to comment https://forums.phpfreaks.com/topic/163599-ezine-article-ready-code/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.