Shift と呼ばれる Codestag の Themeforest から WP テーマを購入しました。これは非常に使いやすく、きれいな UI です。主にブログスタイルの投稿用で、事前に作成されたブログ投稿スタイルを作成しています...
たとえば、「オーディオ」投稿はテキストと埋め込まれたオーディオ ファイルです。「ビデオ」はビデオのリンクとテキスト、「写真」は明らかに写真とテキストです。
私の問題は、これらがカスタマイズ可能でなく、作成するブログ投稿のタイプがオーディオまたはビデオであり、アーティストの写真またはアルバム アートが含まれていることです。この既製の投稿に写真を含めるには、どのコードを追加する必要がありますか? (以下のコード)
私が持っている2番目の質問は、オーディオファイル、タイトル、テキストからタイトル、写真テキスト、オーディオへの順序を変更するにはどうすればよいですか?
これは、事前に作成されたブログ スタイル「オーディオ」のコードです。
<div class="hentry-inner">
<div class="entry-wrapper grids">
<?php get_template_part('content', 'meta'); ?>
<div class="entry-content grid-10 clearfix">
<?php
$embed = get_post_meta(get_the_ID(), '_stag_audio_embed', true);
if(!empty($embed)){
echo do_shortcode(htmlspecialchars_decode($embed));
}else{
stag_audio_player(get_the_ID());
}
?>
<?php if( is_single() ) { ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php } else { ?>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'stag'), get_the_title()); ?>"> <?php the_title(); ?></a></h2>
<?php } ?>
<?php
if(!is_singular()){
if(get_the_excerpt() != '') echo "<p>".strip_shortcodes(get_the_excerpt())."</p>";
}else{
the_content(__('Continue Reading', 'stag'));
wp_link_pages(array('before' => '<p><strong>'.__('Pages:', 'stag').'</strong> ', 'after' => '</p>', 'next_or_number' => 'number'));
}
?>
</div>
<span class="bottom-accent"></span>
</div>
</div>
助けてくれてありがとう!-ピーター