Skip to content
Tawhidul Islam edited this page Aug 2, 2013 · 5 revisions

Welcome to the Vafpress Framework wiki!

This wiki contains instructions, tips & tricks and some common issues/solutions. Feel free to contribute more content as you feel necessary!

Setup instruction:

Just put this code somewhere in your functions.php file:

/**
* Loading Options
*/
require_once 'vafpress/bootstrap.php'; // Theme Options

Themes Option Retrieving :

Use Text/Textarea/Media/Color Field Like this code

<?php echo vp_option('unique name(id)') ?>

Use If Statement

<?php if(vp_option('unique name(id)')) { ?>
<?php echo vp_option('unique name(id)') ?>
<?php } ?>

Use Checkbox/Switch Option

<?php if(vp_option('unique name(id)') == '1') { ?>
<?php echo vp_option('unique name(id)') ?>
<?php } ?>

** More Field Coming Soon **


Clone this wiki locally