我正在尝试使用短信代码中的jetpack共享图标来显示帖子的网格..但是我还没有能够这样做
因为sharing_display('',true)输出共享图标,所以我认为它没有显示,但即使在使用此sharing_display( '', false )
后我仍然无法显示图标
这是我正在使用的代码..
if($loop->have_posts()):
$html.='<div id="oj-blog" class="section blog-wrap">
<div class="container">
'.(($title?'<div class="title">
<h2>'.$title.'</h2>
</div>':'')).'
<div class="row">';
while($loop->have_posts()):$loop->the_post();
$html.='
<div class="blog-single">
<h3>'.get_the_title().'</h3>
<p>'.get_the_excerpt().'</p>';
if ( function_exists( 'sharing_display' ) ) {
$html.= sharing_display( '', false );
}
$html.= '<a href="'.get_the_permalink().'">Read More</a>
</div>';
endwhile;
endif;
return $html;
提前感谢您的帮助