メインコンテンツへスキップ

NewPost

テクノロジーと
ビジネスの融合

最新技術とビジネスのトレンドをお届けします

新着記事

LATEST POSTS

[swell_post_list type="card" count="6" orderby="date" excerpt="off" btn_text="続きを読む"]

カテゴリ別記事

CATEGORIES

プログラミング

[swell_post_list type="card" count="3" cat="programming" orderby="date" excerpt="off"]

セキュリティ

[swell_post_list type="card" count="3" cat="security" orderby="date" excerpt="off"]

AI技術

[swell_post_list type="card" count="3" cat="ai" orderby="date" excerpt="off"]

Web開発

[swell_post_list type="card" count="3" cat="web" orderby="date" excerpt="off"]

記事を検索

SEARCH POSTS

記事タイトルで検索

記事のタイトルに含まれるキーワードで検索できます。具体的なトピックや技術名を入力してみましょう。

タグで検索

記事に付けられたタグから関連記事を見つけることができます。特定のフレームワークや言語で絞り込みましょう。

記事本文で検索

記事の本文に含まれる単語やフレーズで検索できます。詳細な情報や特定の説明を探したい時に便利です。

``` ## 記事ページ (Article Detail) のカスタマイズ SWELLテーマに合わせた記事ページカスタマイズは主に「SWELL設定」から行います。 以下は追加コードによるカスタマイズ例です。functions.phpに追加するか、カスタムコードプラグインを使用してください。 ```php term_id; } // 関連記事のクエリ $args = array( 'post_type' => 'post', 'posts_per_page' => 6, 'post__not_in' => array($post_id), 'category__in' => $category_ids, 'orderby' => 'rand' ); $related_posts = new WP_Query($args); if ($related_posts->have_posts()) : ?>