Jump to content

Ezine Article Ready Code


charson

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.