getPrefixedActionHook( 'render_archive_start' ) ); get_template_part( 'template/archive/header' ); do_action( ace()->getPrefixedActionHook( 'render_before_archive' ) ); if ( have_posts() ) { $articles_class = array( 'articles', 'post-list', 'list-in-' . get_theme_mod( 'main_archive_article_type', 'card' ) ); echo '
'; while( have_posts() ) { the_post(); do_action( ace()->getPrefixedActionHook( 'render_archive_article' ) ); } 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' ) );