在avada主题融合wordpress中显示没有图像的投资组合列表

如何在不显示Avada主题缩略图的情况下显示投资组合列表(仅标题)?


#1


假设你的投资组合项目创建为自定义帖子类型, 则可以创建一个自定义的wordpress查询来获取它们。

$args = array(
    'post_type' => 'your_custom_post_type_slug', 'post_status' => 'publish'
);

$portfolio_items = new WP_Query( $args );
if( $portfolio_items->have_posts() ){
    while( $portfolio_items->have_posts() ){
        $portfolio_items->the_post();
        the_title();
    }
}

另外, 你可以使用CSS display:none;隐藏所有图像。

来源:

https://www.srcmini02.com/62967.html

微信公众号
手机浏览(小程序)
0
分享到:
没有账号? 忘记密码?