You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.8 KiB
PHP

<?php
/**
* Sitemap - News
*
* @since 1.0.0
* @package RankMath
* @subpackage RankMathPro
* @author MyThemeShop <admin@mythemeshop.com>
*/
use RankMath\Helper;
defined( 'ABSPATH' ) || exit;
$cmb->add_field(
[
'id' => 'news_sitemap_publication_name',
'type' => 'text',
'name' => esc_html__( 'Google News Publication Name', 'rank-math-pro' ),
'desc' => wp_kses_post( __( 'The name of the news publication. It must match the name exactly as it appears on your articles in news.google.com, omitting any trailing parentheticals. <a href="https://support.google.com/news/publisher-center/answer/9606710" target="_blank">More information at support.google.com</a>', 'rank-math-pro' ) ),
]
);
$post_types = Helper::choices_post_types();
if ( isset( $post_types['attachment'] ) && Helper::get_settings( 'general.attachment_redirect_urls', true ) ) {
unset( $post_types['attachment'] );
}
$cmb->add_field(
[
'id' => 'news_sitemap_post_type',
'type' => 'multicheck_inline',
'name' => esc_html__( 'News Post Type', 'rank-math-pro' ),
'desc' => esc_html__( 'Select the post type you use for News articles.', 'rank-math-pro' ),
'options' => $post_types,
]
);
$post_types = Helper::get_settings( 'sitemap.news_sitemap_post_type', [] );
if ( empty( $post_types ) ) {
return;
}
foreach ( $post_types as $post_type ) {
$taxonomies = Helper::get_object_taxonomies( $post_type, 'objects' );
if ( empty( $taxonomies ) ) {
continue;
}
$post_type_obj = get_post_type_object( $post_type );
$post_type_label = $post_type_obj->labels->singular_name;
$group_field_id = '';
foreach ( $taxonomies as $taxonomy => $data ) {
if ( empty( $data->show_ui ) ) {
continue;
}
$terms = get_terms(
[
'taxonomy' => $taxonomy,
'show_ui' => true,
'fields' => 'id=>name',
'update_term_meta_cache' => false,
]
);
if ( 0 === count( $terms ) ) {
continue;
}
if ( ! $group_field_id ) {
$group_field_id = $cmb->add_field(
[
'id' => "news_sitemap_exclude_{$post_type}_terms",
'type' => 'group',
/* translators: Post Type */
'name' => sprintf( __( 'Exclude %s Terms ', 'rank-math-pro' ), $post_type_label ),
'classes' => 'news-sitemap-exclude-terms cmb-group-text-only',
'repeatable' => false,
]
);
}
$cmb->add_group_field(
$group_field_id,
[
'name' => '',
'id' => $taxonomy,
'type' => 'multicheck_inline',
'options' => $terms,
'classes' => 'cmb-field-list',
/* translators: 1. Taxonomy Name 2. Post Type */
'desc' => sprintf( esc_html__( '%1$s to exclude for %2$s.', 'rank-math-pro' ), $data->label, $post_type_label ),
]
);
}
}