get_description(); ?>
get_field(
esc_html__( 'URL', 'rank-math-pro' ),
'url'
);
?>
get_field(
esc_html__( 'Reference Web page ', 'rank-math-pro' ),
'sameAs'
);
?>
get_field_value( 'identifier' );
if ( ! empty( $identifier ) ) {
$identifiers = explode( PHP_EOL, $identifier );
$shortcode->output_field(
esc_html__( 'Identifier', 'rank-math-pro' ),
'
- ' . join( '
- ', $identifiers ) . '
'
);
}
?>
get_field_value( 'keywords' );
if ( ! empty( $keyword ) ) {
$keywords = explode( PHP_EOL, $keyword );
$shortcode->output_field(
esc_html__( 'Keywords', 'rank-math-pro' ),
'
- ' . join( '
- ', $keywords ) . '
'
);
}
?>
get_field(
esc_html__( 'License', 'rank-math-pro' ),
'license'
);
?>
get_field(
esc_html__( 'Catalog', 'rank-math-pro' ),
'includedInDataCatalog.name'
);
?>
get_field(
esc_html__( 'Temporal Coverage', 'rank-math-pro' ),
'temporalCoverage'
);
?>
get_field(
esc_html__( 'Special Coverage', 'rank-math-pro' ),
'spatialCoverage'
);
?>
get_field_value( 'hasPart' );
$labels = [
'name' => esc_html__( 'Name', 'rank-math-pro' ),
'description' => esc_html__( 'Description', 'rank-math-pro' ),
'license' => esc_html__( 'License', 'rank-math-pro' ),
];
if ( ! empty( $data_sets ) ) {
echo '
' . esc_html__( 'Data Sets', 'rank-math-pro' ) . '
';
foreach ( $data_sets as $data_set ) {
echo '
';
foreach ( $labels as $key => $label ) {
echo "
{$label}: {$data_set[$key]}
"; // phpcs:ignore
}
echo '
';
}
}
?>
get_field_value( 'distribution' );
$labels = [
'encodingFormat' => esc_html__( 'Format', 'rank-math-pro' ),
'contentUrl' => esc_html__( 'URL', 'rank-math-pro' ),
];
if ( ! empty( $distributions ) ) {
echo '
' . esc_html__( 'Distribution', 'rank-math-pro' ) . '
';
foreach ( $distributions as $distribution ) {
echo '
';
foreach ( $labels as $key => $label ) {
echo "
{$label}: {$distribution[$key]}
"; // phpcs:ignore
}
echo '
';
}
}
?>