add_field(
[
'id' => 'indexnow_description',
'type' => 'raw',
'content' => '
' . esc_html__( 'Insert URLs to send to the IndexNow API (one per line, up to 10,000):', 'rank-math' ) . '
',
]
);
$cmb->add_field(
[
'id' => 'indexnow_urls',
'type' => 'textarea_small',
'sanitization_cb' => '__return_false',
'attributes' => [
'class' => 'instant-indexing-urls',
'placeholder' => trailingslashit( home_url() ) . _x( 'hello-world', 'URL slug placeholder', 'rank-math' ),
],
'after_field' => '' . esc_html__( 'Submit URLs', 'rank-math' ) . ' ',
]
);
$cmb->add_field(
[
'id' => 'educational_note',
'type' => 'notice',
'what' => 'info',
'save_field' => false,
'content' => sprintf(
/* translators: Note text */
esc_html__( '%s The URLs will be submitted to Bing and Yandex only, and not to Google.', 'rank-math' ),
'' . esc_html__( 'Note:', 'rank-math' ) . ''
),
]
);