Hi WP-people,
I try to make some "custom post feilds" with the "Easy post type plugin" The "custom post feilds" doesn't show up on the wp-site
only in the wp-editor...But if I declare the custom feild in the "loop"
it may works(see below)?
I try to build a products page, and does anybody have
any advice I would be grateful (tutorial website ect)...
cheers!
<?php query_posts( 'post_type=demo'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(__('Read more', 'studiopress'));?><div class="clear"></div><?php edit_post_link(__('(Edit)', 'studiopress'), '', ''); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.', 'studiopress'); ?></p><?php endif; ?>