()

You can add constants to wp-config.php or the theme’s functions.php file to control some aspects of the plugin. Available constants to set are:

// Allow users with edit_posts capability access to the Post Snippets admin.
define('POST_SNIPPETS_ALLOW_EDIT_POSTS', true);

// Disable PHP Execution in snippets, and removes the options from admin.
define('POST_SNIPPETS_DISABLE_PHP', true);

<?php $my_snippet = PostSnippets::getSnippet( $snippet_name, $snippet_vars ); ?>

$snippet_name


$snippet_vars

// Use querystring for variables
$mySnippet = PostSnippets::getSnippet('internal-link', 'title=Awesome&url=2011/02/awesome/');
echo $mySnippet;

// Use array for variables
$mySnippet = PostSnippets::getSnippet('internal-link', array('title' => 'Awesome', 'url' => '2011/02/awesome/');
echo $mySnippet;