web-dev-qa-db-ja.com

SoundCloudプレーヤーが記事の抜粋に表示されることを許可する

私は私のSoundCloudアカウントと一緒に、私の音楽のためのウェブサイトをセットアップしています。私はsoundcloudプレーヤーへのリンクをブログ投稿として投稿するつもりですが、ブログの抜粋にプレーヤーを表示させる方法がわかりません。

私の例については、サイトのトップの投稿をチェックしてください。 http://jonathanperos.com/

「ハニカムレインボー」の記事の抜粋に、そのためのプレーヤーを見せてほしい。

2
Kidd Cabbage

抜粋はテキストを取得し、タグをトリミングします。そのiframeのID用に新しいカスタムフィールドを作成する必要があります(Advanced Custom Fieldsを使用できます)。その後、あなたはあなたのcontent_excerpt.phpを編集する必要があります(私はテーマが使用しているかわからない)とその代わりにまたはあなたの抜粋の下にそのフィールドを取得する。

例:(Advanced CustomフィールドとTwenty 13テーマを使用して)

<?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

1
KalymaStudio