��<?php // A9'D �1/F 'E�'F'* B'D( function simple_news_setup() { add_theme_support('title-tag'); // ~4*�('F� '2 9FH'F 5A-G add_theme_support('post-thumbnails'); // ~4*�('F� '2 *5H�1 4'.5 register_nav_menus(array( 'primary' => __('Primary Menu', 'simple-news'), )); } add_action('after_setup_theme', 'simple_news_setup'); // +(* /3*G (F/� ~�4 A16 (1'� ~3* G' function simple_news_init() { register_taxonomy_for_object_type('category', 'post'); } add_action('init', 'simple_news_init'); ��<?php get_header(); ?> <div class="content-area"> <main class="site-main"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="entry-content"> <?php the_excerpt(); ?> </div> </article> <?php endwhile; ?> <div class="pagination"> <?php the_posts_pagination(array( 'prev_text' => __('B(D�'), 'next_text' => __('(9/�'), )); ?> </div> <?php else : ?> <p>G�� E7D(� �'A* F4/.</p> <?php endif; ?> </main> </div> <?php get_footer(); ?>