0

我从 Codestag 的 Themeforest 购买了一个名为 Shift 的 WP 主题,它是一个非常易于使用和干净的 UI。它主要用于博客风格的帖子,他们已经创建了预制的博客帖子风格......

例如,“音频”帖子是文本和嵌入的音频文件。“视频”是视频链接和文字,“照片”显然是照片和文字。

我的问题是这些不可定制,我创建的博客文章类型要么是音频要么是视频,并且包括艺术家的照片或专辑封面。我需要添加什么代码才能让这个预制帖子包含照片?(代码如下)

我的第二个问题是如何将顺序从音频文件、标题、文本更改为标题、照片文本和音频?

这是预制博客样式的代码:“音频”

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

非常感谢您的帮助!-彼得

4

1 回答 1

0

在这里,我添加了the_post_thumbnail(参见Codex)以在内容上方显示一张照片:

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

                if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
                    the_post_thumbnail();
                } 

                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>

此模板显示标题、特色图片、内容、音频(按此顺序):

<div class="hentry-inner">

    <div class="entry-wrapper grids">

        <?php get_template_part('content', 'meta'); ?>

        <div class="entry-content grid-10 clearfix">

            <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

            if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
                the_post_thumbnail();
            }

            the_content(__('Continue Reading', 'stag'));

            wp_link_pages(array('before' => '<p><strong>'.__('Pages:', 'stag').'</strong> ',   'after' => '</p>', 'next_or_number' => 'number'));

            $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());
            }

            ?>

        </div>
        <span class="bottom-accent"></span>
    </div>
</div>

WordPress 有很好的文档记录,我建议您深入研究WordPress Codex。如果您需要进一步的自定义,您可能应该要求和/或聘请主题作者为您进行修改。

于 2013-09-28T07:10:55.793 回答