本文整理汇总了PHP中GoogleSitemapGenerator::HtmlGetPriorityValues方法的典型用法代码示例。如果您正苦于以下问题:PHP GoogleSitemapGenerator::HtmlGetPriorityValues方法的具体用法?PHP GoogleSitemapGenerator::HtmlGetPriorityValues怎么用?PHP GoogleSitemapGenerator::HtmlGetPriorityValues使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GoogleSitemapGenerator
的用法示例。
在下文中一共展示了GoogleSitemapGenerator::HtmlGetPriorityValues方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: HtmlShowOptionsPage
//.........这里部分代码省略.........
<?php
_e('Tag pages', 'sitemap');
?>
</label>
</li>
<?php
}
?>
<li>
<label for="sm_cf_auth">
<select id="sm_cf_auth" name="sm_cf_auth"><?php
$this->sg->HtmlGetFreqNames($this->sg->GetOption("cf_auth"));
?>
</select>
<?php
_e('Author pages', 'sitemap');
?>
</label>
</li>
</ul>
<?php
$this->HtmlPrintBoxFooter();
?>
<!-- Priorities -->
<?php
$this->HtmlPrintBoxHeader('sm_priorities', __('Priorities', 'sitemap'));
?>
<ul>
<li>
<label for="sm_pr_home">
<select id="sm_pr_home" name="sm_pr_home"><?php
$this->sg->HtmlGetPriorityValues($this->sg->GetOption("pr_home"));
?>
</select>
<?php
_e('Homepage', 'sitemap');
?>
</label>
</li>
<li>
<label for="sm_pr_posts">
<select id="sm_pr_posts" name="sm_pr_posts"><?php
$this->sg->HtmlGetPriorityValues($this->sg->GetOption("pr_posts"));
?>
</select>
<?php
_e('Posts (If auto calculation is disabled)', 'sitemap');
?>
</label>
</li>
<li>
<label for="sm_pr_posts_min">
<select id="sm_pr_posts_min" name="sm_pr_posts_min"><?php
$this->sg->HtmlGetPriorityValues($this->sg->GetOption("pr_posts_min"));
?>
</select>
<?php
_e('Minimum post priority (Even if auto calculation is enabled)', 'sitemap');
?>
</label>
</li>
<li>
<label for="sm_pr_pages">
<select id="sm_pr_pages" name="sm_pr_pages"><?php