本文整理匯總了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;
}