当前位置: 首页>>代码示例>>PHP>>正文


PHP td_global::load_single_post方法代码示例

本文整理汇总了PHP中td_global::load_single_post方法的典型用法代码示例。如果您正苦于以下问题:PHP td_global::load_single_post方法的具体用法?PHP td_global::load_single_post怎么用?PHP td_global::load_single_post使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在td_global的用法示例。


在下文中一共展示了td_global::load_single_post方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: template

<?php

/**
 * Created by PhpStorm.
 * User: tagdiv
 * Date: 10.07.2015
 * Time: 15:58
 */
global $loop_module_id, $loop_sidebar_position, $post, $td_sidebar_position;
//global $wp_query;
//var_dump($wp_query->query_vars);
td_global::load_single_post($post);
/*  ----------------------------------------------------------------------------
    the post template (single article template)
 */
//get_header();
//set the template id, used to get the template specific settings
$template_id = 'home';
//home = blog index = blog - use the same settings from the blog index
//prepare the loop variables
//read the global settings
$loop_sidebar_position = td_util::get_option('tds_' . $template_id . '_sidebar_pos');
//sidebar right is default (empty)
$loop_module_id = 1;
//use the default 1 module (full post)
//read the primary category sidebar position! - we have to make the page after the primary category or after the global setting
$primary_category_id = td_global::get_primary_category_id();
if (!empty($primary_category_id)) {
    $tax_meta_sidebar = td_util::get_category_option($primary_category_id, 'tdc_sidebar_pos');
    //swich by RADU A, get_tax_meta($primary_category_id, 'tdc_sidebar_pos');
    if (!empty($tax_meta_sidebar)) {
开发者ID:tuanlibra,项目名称:thptxuanang,代码行数:31,代码来源:td_single_template_vars.php


注:本文中的td_global::load_single_post方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。