本文整理汇总了PHP中GoogleSitemapGenerator::GetCustomPostTypes方法的典型用法代码示例。如果您正苦于以下问题:PHP GoogleSitemapGenerator::GetCustomPostTypes方法的具体用法?PHP GoogleSitemapGenerator::GetCustomPostTypes怎么用?PHP GoogleSitemapGenerator::GetCustomPostTypes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GoogleSitemapGenerator
的用法示例。
在下文中一共展示了GoogleSitemapGenerator::GetCustomPostTypes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: HtmlShowOptionsPage
//.........这里部分代码省略.........
?>
:</b><ul><?php
foreach ($taxonomies as $taxName) {
$taxonomy = get_taxonomy($taxName);
$selected = in_array($taxonomy->name, $enabledTaxonomies);
?>
<li>
<label for="sm_in_tax[<?php
echo $taxonomy->name;
?>
]">
<input type="checkbox" id="sm_in_tax[<?php
echo $taxonomy->name;
?>
]" name="sm_in_tax[<?php
echo $taxonomy->name;
?>
]" <?php
echo $selected ? "checked=\"checked\"" : "";
?>
/>
<?php
echo str_replace('%s', $taxonomy->label, __('Include taxonomy pages for %s', 'sitemap'));
?>
</label>
</li>
<?php
}
?>
</ul><?php
}
}
if ($this->sg->IsCustomPostTypesSupported()) {
$custom_post_types = $this->sg->GetCustomPostTypes();
$enabledPostTypes = $this->sg->GetOption('in_customtypes');
if (count($custom_post_types) > 0) {
?>
<b><?php
_e('Custom post types', 'sitemap');
?>
:</b><ul><?php
foreach ($custom_post_types as $post_type) {
$post_type_object = get_post_type_object($post_type);
if (is_array($enabledPostTypes)) {
$selected = in_array($post_type_object->name, $enabledPostTypes);
}
?>
<li>
<label for="sm_in_customtypes[<?php
echo $post_type_object->name;
?>
]">
<input type="checkbox" id="sm_in_customtypes[<?php
echo $post_type_object->name;
?>
]" name="sm_in_customtypes[<?php
echo $post_type_object->name;
?>
]" <?php
echo $selected ? "checked=\"checked\"" : "";
?>
/>
<?php
echo str_replace('%s', $post_type_object->label, __('Include custom post type %s', 'sitemap'));
?>
</label>
示例2: HtmlShowOptionsPage
//.........这里部分代码省略.........
?>
:</b><ul><?php
foreach ($taxonomies as $taxName) {
$taxonomy = get_taxonomy($taxName);
$selected = in_array($taxonomy->name, $enabledTaxonomies);
?>
<li>
<label for="sm_in_tax[<?php
echo $taxonomy->name;
?>
]">
<input type="checkbox" id="sm_in_tax[<?php
echo $taxonomy->name;
?>
]" name="sm_in_tax[<?php
echo $taxonomy->name;
?>
]" <?php
echo $selected ? "checked=\"checked\"" : "";
?>
/>
<?php
echo str_replace('%s', $taxonomy->label, __('Include taxonomy pages for %s', 'sitemap'));
?>
</label>
</li>
<?php
}
?>
</ul><?php
}
}
if ($this->sg->IsCustomPostTypesSupported()) {
$custom_post_types = $this->sg->GetCustomPostTypes();
$enabledPostTypes = $this->sg->GetOption('in_customtypes');
if (count($custom_post_types) > 0) {
?>
<b><?php
_e('Custom post types', 'sitemap');
?>
:</b><ul><?php
foreach ($custom_post_types as $post_type) {
$post_type_object = get_post_type_object($post_type);
if (is_array($enabledPostTypes)) {
$selected = in_array($post_type_object->name, $enabledPostTypes);
}
?>
<li>
<label for="sm_in_customtypes[<?php
echo $post_type_object->name;
?>
]">
<input type="checkbox" id="sm_in_customtypes[<?php
echo $post_type_object->name;
?>
]" name="sm_in_customtypes[<?php
echo $post_type_object->name;
?>
]" <?php
echo $selected ? "checked=\"checked\"" : "";
?>
/>
<?php
echo str_replace('%s', $post_type_object->label, __('Include custom post type %s', 'sitemap'));
?>
</label>