getPrefixedActionHook( 'render_archive_start' ) ); get_template_part( 'template/archive/header' ); do_action( ace()->getPrefixedActionHook( 'render_before_archive' ) ); if ( have_posts() ) { $article_container_class = array( 'article-container', 'swiper-container' ); echo '
'; $articles_class = array( 'articles', 'post-list', 'list-in-slider', 'swiper-wrapper' ); echo '
'; while( have_posts() ) { the_post(); do_action( ace()->getPrefixedActionHook( 'render_archive_article' ) ); } echo '
'; echo '
'; } else { echo '

' . esc_html__( 'No Articles.', Ace::TEXTDOMAIN ) . '

'; echo '

' . esc_html__( 'Please try to search for the page with keywords.', Ace::TEXTDOMAIN ) . '

'; get_search_form(); } do_action( ace()->getPrefixedActionHook( 'render_archive_end' ) );