Пример #1
0
	terms of that license. You agree that you are solely responsible
	for your use of the Vanilla theme software and you represent and 
	warrant to Australis Media Pty Ltd that your use of the Vanilla
	theme software will comply with the CC-GNU-GPL.
*/
if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) {
    die;
}
if (CFCT_DEBUG) {
    cfct_banner(__FILE__);
}
global $vnl_width, $vnl_nesting, $vnl_template, $vnl_utility, $tpl;
$vnl_width = isset($vnl_width) ? $vnl_width : vanilla_get_option("vnl_grid_width");
$vnl_nesting = isset($vnl_nesting) ? $vnl_nesting : vanilla_get_option("vnl_grid_nesting");
$vnl_template = isset($vnl_template) ? $vnl_template : vanilla_get_option("vnl_grid_template");
$vnl_utility = isset($vnl_utility) ? $vnl_utility : vanilla_get_option("vnl_utility_nesting");
// Page-specific overides
//$vnl_width = "yui-d3";
//$vnl_nesting = "yui-gd";
//$vnl_template = "yui-t2";
//$vnl_utility = "yui-bg";
// create a new PHPTAL template object
$template = new PHPTAL(vanilla_get_template('posts/tag.html'));
$template->cleanUpCache();
$tag_title = '<a href="' . get_tag_link(intval(get_query_var('tag_id'))) . '" title="">' . single_tag_title('', false) . '</a>';
$tag_title = sprintf(__('Tag Archives: %s', 'carrington'), $tag_title);
$tpl["page"] = array("width" => $vnl_width, "nesting" => $vnl_nesting, "template" => $vnl_template, "utility" => $vnl_utility, "body_class" => sandbox_body_class(false), "bd_class" => "{$vnl_width} {$vnl_template}", "tag_title" => $tag_title, "cat_description" => $cat_description ? $cat_description : 0);
get_header();
vnl_include('loop');
vnl_include('nav-posts');
get_footer();
Пример #2
0
//	require_once(CFCT_PATH.'_tarski/classes/page_select.php');
//	require_once(CFCT_PATH.'_tarski/helpers/admin_helper.php');
//}
// Various helper libraries
//require_once(CFCT_PATH.'_tarski/helpers/template_helper.php');
//require_once(CFCT_PATH.'_tarski/helpers/content_helper.php');
//require_once(CFCT_PATH.'_tarski/helpers/author_helper.php');
//require_once(CFCT_PATH.'_tarski/helpers/tag_helper.php');
//require_once(CFCT_PATH.'_tarski/helpers/widgets.php');
// API files
//require_once(CFCT_PATH.'_tarski/api/hooks.php');
//require_once(CFCT_PATH.'_tarski/api/constants_helper.php');
//include_once(CFCT_PATH.'_tarski/api/deprecated.php');
// Launch
//require_once(CFCT_PATH.'_tarski/launcher.php');
$tpl_set = vanilla_get_option('vnl_tpl_set') . '-set/';
// Load template set's specific functions.php file
include_once vanilla_get_template('functions.php');
cfct_load_plugins();
function cfct_init()
{
    cfct_admin_request_handler();
    if (cfct_get_option('cfct_ajax_load') == 'yes') {
        cfct_ajax_load();
    }
}
add_action('init', 'cfct_init');
/* ========================================
   Header JS Additions
   ======================================== */
wp_enqueue_script('jquery');