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/ezinere ... ?id=950284
Response will be very much appreciated.
The code for the page on http://askcrazy.com 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(); ?>
Ezine Article Ready Code
Moderator: General Moderators