http://freshout.us/goodies/fresh-post-for-wordpress-wordpress-cms/
Maybe worth taking a look at the section called Usage. Have the extra custom fields been set up to display on your template?
Thread Starter
rrteam
(@rrteam)
The fields come up when i created the template, and i have to admit the part about usage is over my head. can anyone dumb that part down for me??
You not only have to create the fields but you also have to alter the template files in order to display them.
You need to insert the fields in the content area of the relevant files where you want them to show up. Something like this:
<p> Project: <?php echo get(‘name_of_project_field’); ?></p>
(or whatever you called your fields)
and for images:
<?php get_image(’name_of_image_field’); ?>
Thread Starter
rrteam
(@rrteam)
I saw that here: http://freshout.us/goodies/fresh-post-for-wordpress-wordpress-cms/
But it doest say which file to have them show up in. How do i figure that out? would be in wordpress file under plugin (sorry, newbie alert!)
thanks 😉
@rrteam: The files you would would need to edit are the template files, which you can read more about here.
But let’s say for instance that you want this to show up in your normal posts, so the file you’d probably want to edit is (a copy of) archive.php or single.php depending on your theme. Someone will correct me if I’m wrong 🙂
If you’re familiar with HTML, it shouldn’t be too much of a problem inserting the example that Cinematic posted into the template.