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