我使用以下代码将图像调用single.php
以添加CSS
single.php中
<? if( has_post_thumbnail( $post_id ) ): ?>
<div class="post-image">
<img src="<?=wp_get_attachment_url( get_post_thumbnail_id() ); ?>">
</div>
<? endif; ?>
问题是我现在发现当我点击编辑媒体时通过CMS端添加的元数据没有显示。
有谁知道如何将它们编码到我的single.php中?
我的完整single.php
<?php get_header(); ?>
<? if( has_post_thumbnail( $post_id ) ): ?>
<div class="single-featured-image post-image">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<img src="<?=wp_get_attachment_url( get_post_thumbnail_id() ); ?>">
</div>
<? endif; ?>
<img src="<?php echo $url; ?>" />
<div class="blog-post">
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
get_template_part( 'content-single', get_post_format() );
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; endif;
?>
</div>
</div> // closes of container
<?php get_footer(); ?>
答案 0 :(得分:0)
您可能需要的是get_post_meta。例如:
$meta_value = get_post_meta( get_the_ID(), 'meta_key_name', true );
get_the_ID()
将是当前帖子的ID。将meta_key_name
替换为我们自己的元键
答案 1 :(得分:0)
获得&#34; alt&#34;属性您需要使用get_post_meta
作为附件ID。但对于标题和标题,您需要直接检索附件帖子,因为该信息存储在wp_posts中。
所以你可以这样做:
<?php if( has_post_thumbnail( $post_id ) ):
$pic_id = get_post_thumbnail_id();
$pic = get_post( $pic_id );
$caption = $pic->post_excerpt;
$image_alt = get_post_meta( $pic->ID, '_wp_attachment_image_alt', true );
$image_title = $pic->post_title;
?>
<div class="post-image">
<h4><?php echo $image_title; ?></h4>
<img src="<?php echo wp_get_attachment_url( $pic_id); ?>" alt="<?php echo $image_alt; ?>">
<span class="description"><?php echo $caption;?></span>
</div>
<? endif; ?>
更改HTML以满足您的需求,我不知道您想在哪里显示图例和标题。