Ezine Article Ready Code

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
charson
Forum Newbie
Posts: 1
Joined: Thu Jun 25, 2009 2:33 am

Ezine Article Ready Code

Post by charson »

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(); ?>
Post Reply