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