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


PHP Templates::get_templates方法代码示例

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


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

示例1: meta_box_template

        public function meta_box_template($post)
        {
            $articleTemplate = get_post_meta($post->ID, DPSFA_Article_Slug . "_template", true);
            $TemplateService = new Templates();
            $templates = $TemplateService->get_templates();
            ?>
		    <p>
		        <label for="my_meta_box_select">Template</label>
		        <select name="<?php 
            echo DPSFA_Article_Slug . "_template";
            ?>
" id="<?php 
            echo DPSFA_Article_Slug . "template";
            ?>
">
		            <?php 
            foreach ($templates as $template) {
                ?>
		            <option value="<?php 
                echo $template['path'];
                ?>
" <?php 
                selected($articleTemplate, $template['path']);
                ?>
>
		            	<?php 
                echo $template['type'];
                ?>
: <?php 
                echo $template['name'];
                ?>
		            </option>
		            <?php 
            }
            ?>
		        </select>
		        <?php 
            wp_nonce_field('article_meta_template', 'article_meta_template');
            ?>
		    </p>
		    <?php 
        }
开发者ID:josedesousa-tcc,项目名称:digital-publishing-tools-for-wordpress,代码行数:42,代码来源:dpsfa-cms-wordpress-cpt-article.php

示例2: update_templates

 public function update_templates()
 {
     $Templates = new Templates();
     $this->templates = $Templates->get_templates();
 }
开发者ID:josedesousa-tcc,项目名称:digital-publishing-tools-for-wordpress,代码行数:5,代码来源:dpsfa-settings.php

示例3: template_override

 public function template_override($template)
 {
     global $post;
     if ($post->post_type == DPSFA_Article_Slug) {
         // If post type is article
         $article = new Article(array('id' => $post->ID));
         if (file_exists($article->template)) {
             return $article->template;
         } else {
             $Template = new Templates();
             $templates = $Template->get_templates();
             if (empty($templates) || !file_exists($templates[0]['path'])) {
                 die("There are no valid templates available.");
             } else {
                 return $templates[0]['path'];
             }
         }
     }
     return $template;
 }
开发者ID:jerwarren,项目名称:digital-publishing-tools-for-wordpress,代码行数:20,代码来源:dpsfa-cms-wordpress.php


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