php
function shiuanyu_category_bar() {
    if ( ! is_home() ) return;

    $categories = array(
        array( 'name' => '租稅法律', 'slug' => '租稅法律' ),
        array( 'name' => '不動產法律', 'slug' => '不動產法律' ),
        array( 'name' => '民事訴訟', 'slug' => '民事訴訟' ),
        array( 'name' => '刑事訴訟', 'slug' => '刑事訴訟' ),
        array( 'name' => '勞動訴訟', 'slug' => '勞動訴訟' ),
        array( 'name' => '工程訴訟案件', 'slug' => '工程訴訟案件' ),
        array( 'name' => '企業法律顧問', 'slug' => '企業法律顧問' ),
        array( 'name' => '實務動態', 'slug' => 'legal-updates' ),
    );

    $html = '<div id="shiuanyu-cat-bar" style="text-align:center;padding:32px 0 24px 0;margin-bottom:24px;border-bottom:1px solid #e8e3db;">';
    $html .= '<a href="/法律文章/" style="display:inline-block;margin:4px;padding:8px 20px;border:1px solid #1B3A2D;color:#1B3A2D;font-size:13px;text-decoration:none;border-radius:2px;">全部</a>';

    foreach ( $categories as $cat ) {
        $term = get_term_by( 'slug', $cat['slug'], 'category' );
        if ( $term ) {
            $count = $term->count;
            $url = get_category_link( $term->term_id );
            $html .= '<a href="' . esc_url( $url ) . '" style="display:inline-block;margin:4px;padding:8px 20px;border:1px solid #1B3A2D;color:#1B3A2D;font-size:13px;text-decoration:none;border-radius:2px;">' . esc_html( $cat['name'] ) . ' (' . $count . ')</a>';
        }
    }

    $html .= '</div>';

    echo '<script>
    document.addEventListener("DOMContentLoaded", function() {
        var container = document.querySelector("#main");
        if (container) {
            container.insertAdjacentHTML("afterbegin", ' . json_encode( $html ) . ');
        }
    });
    </script>';
}
add_action( 'wp_footer', 'shiuanyu_category_bar' );
```<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//shiuanyulaw.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://shiuanyulaw.com/post-sitemap.xml</loc>
		<lastmod>2026-04-23T01:11:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shiuanyulaw.com/page-sitemap.xml</loc>
		<lastmod>2026-04-24T12:01:56+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shiuanyulaw.com/category-sitemap.xml</loc>
		<lastmod>2026-04-23T01:11:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shiuanyulaw.com/post_tag-sitemap.xml</loc>
		<lastmod>2026-04-23T01:11:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shiuanyulaw.com/author-sitemap.xml</loc>
		<lastmod>2026-04-04T14:31:22+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->