我尝试为我的WordPress帖子插入 meta描述,但元描述始终为空。
这是我的代码:
post_data = {
'title': title,
'content': markdown.markdown(content),
'slug': slug,
'status': 'publish',
'yoast_meta' : {
'yoast_wpseo_metadesc' : meta_description
},
'author': author_id,
'categories': [category_id], # Assign the category ID to the post
'meta': {
'meta_description': meta_description,
},
}
我不确定字段名是否正确,或者Yoast是否支持从API提供 meta描述。
1条答案
按热度按时间xzlaal3s1#
您需要使用
_yoast_wpseo_metadesc
密钥而不是yoast_wpseo_metadesc
,因为这是Yoast SEO用于存储 meta描述的实际密钥。