允许SoundCloud播放器出现在帖子摘录中

时间:2013-10-04 作者:Kidd Cabbage

我正在为我的音乐和我的SoundCloud帐户建立一个网站。我计划将我的soundcloud播放器的链接发布为博客帖子,但我不知道如何让博客摘录显示该播放器。

查看网站上的顶部帖子,了解我的示例:http://jonathanperos.com/

我想在“蜂巢彩虹”的帖子节选中向玩家展示它。

1 个回复
SO网友:KalymaStudio

摘录将只获取文本,修剪标记。您需要为该iframe的ID创建一个新的自定义字段(可以使用高级自定义字段)。然后,您需要编辑content\\u摘录。php(我不知道使用的是哪个主题),取而代之的是那个字段,或者在你的摘录下面。

例如:(使用高级自定义字段和二十三主题)

<?php 
// fetch my custom field call it "player"
$player = get_field(\'player\');
?>
<article id="post-<?php the_ID(); ?>">
  <div class="entry-summary">
    <h3 class="entry-title">
   <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( \'Permalink to %s\', \'twentytwelve\' ), the_title_attribute( \'echo=0\' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h3>
    <?php the_excerpt(); ?>
    <iframe src="https://w.soundcloud.com/player/?url=http://api.soundcloud.com/tracks/<?php echo $player;?>&show_artwork=true&maxwidth=620&maxheight=930&wmode=transparent"></iframe>
  </div>
</article>
希望你能理解我的英语:D

结束

相关推荐

如何使用POSTS_WHERE/POSTS_JOIN创建自己的嵌套META_QUERY?

我的一些帖子(不是全部)有一个价格作为元键/值。今天我使用pre_get_posts 操作,以便我的用户可以搜索介于某个值之间的价格。这是我今天使用的代码,它正在运行。add_action(\'pre_get_posts\', \'my_search_price\'); function my_search_price( $query ) { if ($query->get(\'maxprice\') != \"\" && $query->get(\'m