我有这样的结构:
+ EVENT -> itemtype="http://schema.org/Event
+ Name
+ Date
+ ...
+ LOCATION -> itemtype="http://schema.org/Place
* Name
+ Url
+ ...
Run Code Online (Sandbox Code Playgroud)
我不会在网站上显示所有地点信息,但我想将这些信息用于微数据。所以我想添加这个标签:
<meta itemprop="location" itemscope itemtype="http://schema.org/Place">
Run Code Online (Sandbox Code Playgroud)
工作正常。
但是我怎样才能添加 itemprops name, url, "address" 呢location?
它不会像这样工作:
<meta itemprop="location" itemscope itemtype="http://schema.org/Place">
<meta itemprop="url" content="https://example-location.com">
<meta itemprop="name" content="exampleLocationName">
Run Code Online (Sandbox Code Playgroud)