WordPress Popular Postsでwelcartの商品メイン画像を使えるようにする

Filed under: functions.php,welcart — kdcs @ 20年9月14日 月曜日

アイキャッチ画像を呼び出す部分をwelcart商品メイン画像に差し替える

//商品画像を取得してPopular postのアイキャッチ画像にする
function my_custom_single_popular_post( $post_html, $p, $instance ){
	global $usces;
	$post_id = $p->id;
	$code =  get_post_meta($post_id, '_itemCode', true);
	$pictid = (int)$usces->get_mainpictid($code);
	$image_src = wp_get_attachment_image_src($pictid);
	$output = '<li class="wpp_list_item cf"><a href="' . get_the_permalink($p->id) . '" class="my-custom-title-class"><img src="' .$image_src[0]. '"/>' . esc_html( $p->title ) . '</a></li>' ;  
	return $output;
}
add_filter( 'wpp_post', 'my_custom_single_popular_post', 10, 3 );

サイト内検索

カテゴリー

最近の投稿

« |WordPress Popular Postsでwelcartの商品メイン画像を使えるようにする| »
↑上に戻る