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


PHP roots_template_path函数代码示例

本文整理汇总了PHP中roots_template_path函数的典型用法代码示例。如果您正苦于以下问题:PHP roots_template_path函数的具体用法?PHP roots_template_path怎么用?PHP roots_template_path使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: save_current_page

 public function save_current_page($template_name)
 {
     $this->template_name = basename($template_name);
     if (function_exists('roots_template_path')) {
         $this->template_name = basename(roots_template_path());
     }
     return $template_name;
 }
开发者ID:kupoback,项目名称:Custom-Code-Work,代码行数:8,代码来源:rhino-template-file.php

示例2: get_template_part

            <section class="col-md-8">
                <?php 
get_template_part('templates/exp-leaderboard');
?>
                <?php 
get_template_part('templates/listen-live');
?>
            </section>
        </div>
        <div class="content row">
          <div class="main <?php 
echo roots_main_class();
?>
" role="main">
                <?php 
include roots_template_path();
?>
          </div><!-- /.main -->
          <?php 
if (roots_display_sidebar()) {
    ?>
            <aside class="sidebar <?php 
    echo roots_sidebar_class();
    ?>
" role="complementary">
                <div class="hidden-xs studio-sponsor">
                    <?php 
    echo adrotate_group(14);
    ?>
                </div>
              <?php 
开发者ID:smark73,项目名称:979theeagle,代码行数:31,代码来源:base.php

示例3: do_action

  <![endif]-->




<?php
  do_action('get_header');
  get_template_part('templates/header');
?>




  <div class="content" role="document">
    <main class="main" role="main">
      <?php include roots_template_path(); ?>
    </main><!-- /.main -->
    <?php if (roots_display_sidebar()) : ?>
      <aside class="sidebar <?php echo roots_sidebar_class(); ?> columns" role="complementary">
        <?php include roots_sidebar_path(); ?>
      </aside><!-- /.sidebar -->
    <?php endif; ?>
  </div><!-- /.content -->


  <?php get_template_part('templates/footer'); ?>




开发者ID:bmontague,项目名称:sct,代码行数:26,代码来源:base.php

示例4: save_current_page

 /**
  * Save the current page in our local var
  *
  * @param $template_name
  *
  * @return mixed
  */
 public function save_current_page($template_name)
 {
     $this->template_name = basename($template_name);
     // Do Roots Theme check
     if (function_exists('roots_template_path')) {
         $this->template_name = basename(roots_template_path());
     } else {
         if (function_exists('Roots\\Sage\\Wrapper\\template_path')) {
             $this->template_name = basename(Roots\Sage\Wrapper\template_path());
         }
     }
     return $template_name;
 }
开发者ID:jrodd32,项目名称:mwux16,代码行数:20,代码来源:what-the-file.php


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