excerpt/description 中使用 Spotify <iframe> 的 Wordpress 帖子
Wordpress posts with Spotify <iframe> in excerpt/description
我需要在存档页面上显示 Spotify 预览以及 post 缩略图。
它不一定必须嵌入到摘录中,但我想知道如何为每个 post 创建一个易于维护的 iframe(使用简单的 post ing 系统)
我能想到的 2 件事 - 第一,你实际上可以在 archive.php 中创建你的 iFrame,而摘录字段只是 url,所以在文件中你可以有类似的东西:
//the loop
...//some content
<iframe src="<?=get_the_excerpt()?>"></iframe>
...//more content
//end loop
我能想到的第二件事是也使用一些插件在您的帖子中添加额外的字段,您可以调用这些字段。我个人喜欢 CMB2 they have a really good documentation 以及您可以添加到帖子中的各种自定义字段。
我需要在存档页面上显示 Spotify 预览以及 post 缩略图。
它不一定必须嵌入到摘录中,但我想知道如何为每个 post 创建一个易于维护的 iframe(使用简单的 post ing 系统)
我能想到的 2 件事 - 第一,你实际上可以在 archive.php 中创建你的 iFrame,而摘录字段只是 url,所以在文件中你可以有类似的东西:
//the loop
...//some content
<iframe src="<?=get_the_excerpt()?>"></iframe>
...//more content
//end loop
我能想到的第二件事是也使用一些插件在您的帖子中添加额外的字段,您可以调用这些字段。我个人喜欢 CMB2 they have a really good documentation 以及您可以添加到帖子中的各种自定义字段。