Skip to content

Display Content on the Front End

bainternet edited this page Jan 10, 2012 · 4 revisions

Displaying the content from a meta box in the front end of the website is quite easy.

Once you have meta boxes and meta fields set up, you can echo the information in a WordPress theme or plugin file using:

<?php echo get_post_meta($post->ID, 'your-meta-field-id', true); ?>

For Field Specific options read the fields Options and API

Clone this wiki locally