Wordpress附件页面标题

时间:2014-11-15 14:23:51

标签: wordpress themes

我想更改附件页面上的下载链接标题,说下载链接:ATTACHMENT_TITLE。我从哪里开始?主题没有attachment.php

编辑:

我发现我可以编辑single.php

            <?php if ( is_attachment() ) { echo "Download Link : "; } ?>
            <?php get_template_part( 'content', 'single' ); ?>

将文本放在链接上方。与链接内联是很好的。我现在正在看content-single.php。它调用一个名为the_content()的函数;如果我可以关注该函数的位置,也许我可以在链接之前将“下载链接:”文本放在div中。

内容的single.php

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <?php do_action( 'esteem_before_post_content' ); ?>
    <div class="entry-content clearfix">
        <?php 
            the_content();

            $esteem_tag_list = get_the_tag_list( '', '&nbsp;&nbsp;&nbsp;&nbsp;', '' );
            if( !empty( $esteem_tag_list ) ) {
                ?>
                <div class="tags">
                    <?php
                    _e( 'Tagged on: ', 'esteem' ); echo $esteem_tag_list;
                    ?>
                </div>
                <?php
            }

            wp_link_pages( array( 
            'before'            => '<div style="clear: both;"></div><div class="pagination 

clearfix">'.__( 'Pages:', 'esteem' ),
            'after'             => '</div>',
            'link_before'       => '<span>',
            'link_after'        => '</span>'
      ) );
        ?>
    </div>
    <div class="entry-meta-bar clearfix">   
        <div class="entry-meta clearfix">
            <span class="icon-user"><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' 

) ); ?>"><?php the_author(); ?></a></span>
            <span class="icon-time"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( 

get_the_time() ); ?>"><?php the_time( get_option( 'date_format' ) ); ?></a></span>
            <?php if( has_category() ) { ?>
            <span class="icon-tag"><?php the_category(', '); ?></span>
            <?php } ?>
            <?php if ( comments_open() ) { ?>
            <span class="icon-comment-alt"><?php comments_popup_link( __( 'No Comments', 'esteem' ), __( 

'1 Comment', 'esteem' ), __( '% Comments', 'esteem' ), '', __( 'Comments Off', 'esteem' ) ); ?></span>
            <?php } ?> 
            <?php edit_post_link( __( 'Edit', 'esteem' ), '<span class="icon-pencil">', '</span>' ); ?>
        </div><!-- .entry-meta -->                  
    </div><!-- .entry-meta-bar --> 
    <?php
    do_action( 'esteem_after_post_content' );
   ?>
</article>

1 个答案:

答案 0 :(得分:1)

以下是您可以在页面模板中使用的基本代码:

<?php 
    $attachment_id = 1; // ID of attachment
    $attachment_page = get_attachment_link( $attachment_id ); 
?>

<a href="<?php echo $attachment_page; ?>">Download Link**</a>

参考:http://codex.wordpress.org/Function_Reference/get_attachment_link

注意:如果要修改附件页面,可以修改(如果存在)attachments.php模板或创建一个。模板层次结构参考位于:http://codex.wordpress.org/Template_Hierarchy

编辑:

好的,我找到了一个更简单的解决方案。在single.php页面上,将content-single.php模板部分包装在if语句中。您可以将此用作您尝试执行的操作的基础。试一试,让我知道它是怎么回事。

<?php if ( is_attachment() ) { 
    $attachment_link = wp_get_attachment_url();
    echo '<a href="'.$attachment_link.'">Download Link</a>';
} else {            
   get_template_part( 'content', 'single' ); 
} ?>