當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。