• 5, 'post_status' => 'publish', ) ); if ( ! empty( $recent_posts ) ) : echo '
  • ' . esc_html__( 'Recent Posts:', 'ai-creative-studio' ) . '
  • '; echo '
      '; foreach ( $recent_posts as $post ) { echo '
    • ' . esc_html( $post['post_title'] ) . '
    • '; } echo '
    '; endif; // カテゴリー一覧 $categories = get_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'number' => 5, ) ); if ( ! empty( $categories ) ) : echo '
  • ' . esc_html__( 'Categories:', 'ai-creative-studio' ) . '
  • '; echo '
      '; foreach ( $categories as $category ) { echo '
    • ' . esc_html( $category->name ) . '
    • '; } echo '
    '; endif; ?>