本文整理汇总了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();
}
示例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;
}