��<?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(); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <article> <h1><?php the_title(); ?></h1> <p><small><?php the_time('Y/m/d'); ?> | /3*G: <?php the_category(', '); ?></small></p> <div><?php the_content(); ?></div> </article> <?php endwhile; endif; ?> <?php get_footer(); ?>