記事スキーマから公開日を削除

Googleなどの検索エンジンは、検索結果に記事の公開日を表示することがあります。検索エンジンに公開日が表示されないようにしたい場合は、以下のコードスニペットを使用して、AIOSEOが出力するJSONスキーマから削除できます。

add_filter( 'aioseo_schema_output', 'aioseo_filter_schema_output' );

function aioseo_filter_schema_output( $schema ) {
	foreach ( $schema as $index => $graphData ) {
		if ( empty( $graphData['@type'] ) ) {
			continue;
		}

		$type = strtolower( $graphData['@type'] );
		switch ( $type ) {
			case 'article':
			case 'blogposting':
			case 'newsarticle':
				unset( $schema[ $index ]['datePublished'] );
				unset( $schema[ $index ]['dateModified'] );
				break;
			default:
				break;
		}
	}

	return $schema;
}