首页 > 解决方案 > 在 avada 主题融合 wordpress 中显示没有图像的投资组合列表

问题描述

如何在 Avada 主题上显示没有缩略图的投资组合列表(仅标题)?

标签: phpwordpresswordpress-theming

解决方案


假设您的投资组合项目是作为自定义帖子类型创建的,您可以创建自定义 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;


推荐阅读