/
www
/
wwwroot
/
fxdst.com
/
wp-content
/
themes
/
fxdst
/
Upload File
HOME
<?php /* * @Theme Name:WebStack * @Theme URI:https://www.iotheme.cn/ * @Author: iowen * @Author URI: https://www.iowen.cn/ * @Date: 2020-02-22 21:26:05 * @LastEditors: iowen * @LastEditTime: 2024-07-30 18:25:17 * @FilePath: /WebStack/archive.php * @Description: */ if ( ! defined( 'ABSPATH' ) ) { exit; } get_header(); ?> <?php include( 'templates/header-nav.php' ); ?> <div class="main-content"> <?php include( 'templates/header-banner.php' ); ?> <div class="container"> <div class="row mt-5 mt-sm-0"> <div class="col-12 mx-auto"> <?php $fxdst_archive_title = (is_category() || is_tag() || is_tax()) ? single_term_title('', false) : get_the_archive_title(); $fxdst_archive_desc = (is_category() || is_tag() || is_tax()) ? term_description() : get_the_archive_description(); if (!$fxdst_archive_desc) { $fxdst_archive_desc = '汇总和分享 AI 工具、SaaS 产品、独立开发和全球科技工具选型相关的实用内容。'; } ?> <div class="panel panel-default fxdst-archive-panel"> <?php get_template_part( 'templates/breadcrumb' ); ?> <header class="fxdst-archive-head"> <span class="fxdst-eyebrow">内容指南</span> <h1><?php echo esc_html($fxdst_archive_title); ?></h1> <p><?php echo wp_kses_post($fxdst_archive_desc); ?></p> </header> <div class="cat_list fxdst-archive-list"> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post();?> <article class="list-content fxdst-archive-card"> <div class="fxdst-archive-card-meta"> <?php $category = get_the_category(); if(!empty($category)){ ?> <span><i class="fa fa-folder mr-1"></i> <a href="<?php echo get_category_link($category[0]->term_id ) ?>"><?php echo $category[0]->cat_name ?></a> </span> <?php } ?> <span><i class="fa fa-calendar mr-1"></i> <time><?php echo get_the_time('Y-m-d G:i') ?></time> </span> </div> <h2 class="post-title"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" class="list-title"><?php the_title(); ?></a> </h2> <p class="list-desc"><?php echo esc_html(io_get_excerpt(150)); ?></p> <a class="fxdst-archive-read" href="<?php the_permalink(); ?>" aria-label="<?php the_title_attribute(); ?>">阅读全文<i class="fa fa-angle-right"></i></a> </article> <?php endwhile; endif;?> </div> <div class="posts-nav"> <?php echo paginate_links(array( 'prev_next' => 0, 'before_page_number' => '', 'mid_size' => 2, ));?> </div> </div> </div> </div> </div> <?php get_footer(); ?>