如何在模式中显示帖子的特色图像及其内容。
在一些关于类似问题的在线帖子的帮助下,我尝试了以下方法:
<?php
if ( has_post_thumbnail()) {
echo \'<a href="\' . get_permalink($post->ID) . \'" >\';
the_post_thumbnail(\'my_feature_image\', array( \'class\' => "someName" ));
echo \'</a>\';
}
?>
不幸的是,所有帖子都返回相同的特色图片。
在同一时间header.php
如果找到模态,则存在以下内容(模态div上方):
$perma = false;
if ( isset( $wp_query->query_vars[\'phpost_slug\'] ) ) #WHFIX 24/03/2015:
$perma = $wp_query->query_vars[\'phpost_slug\'];
if( $perma ) {
//we don\'t want to return a 404
$wp_query->set( \'is_404\', false );
$phid = get_page_by_path( $perma, OBJECT, \'post\' );
$postvote = get_post_meta( $phid->ID, \'epicredvote\', true );
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id( $phid->ID ), \'single-post-thumbnail\' );
$pluginfeat = get_post_meta( $phid->ID, \'phog\', true );
$desc = get_post( $phid->ID )->post_content;
链接到站点:
https://goo.gl/30a3QQ [单击帖子所在行打开模式。]