我有一个文章的简短预览列表,我可以像这样使用它:这是使用此架构类型的正确方法还是仅适用于整篇文章?
<div itemtype="http://schema.org/Article">
<h2 itemprop="headline" > <a href="the_permalink()"> <?php the_title(); ?></a></h2>
<label>Author : <span itemprop="author" itemscope itemtype="https://schema.org/Person" ><span itemprop="name"><?php echo is_page($object_id) ? 'Yaez Verlag GmbH' : get_the_author(); ?></span></span></label>
<label>Date : <?php echo get_the_date( 'c', $object_id ); ?> </label>
... more code and a very shortend version of the content
</div>