IT WPのCocoonトップページから特定のカテゴリーを除外 ①カテゴリーIDを取得 「ダッシュボード > 投稿 > カテゴリー」を開き、カテゴリー一覧 ②除外コードを記入する 「ダッシュボード > 外観 > テーマエディタ」を開く 「テーマのための関数 functions.php」を選択... 2022.06.07 ITWordPress
IT WordPressでPHPを読み込む方法(functions.phpに直接記載) functions.phpに直接記載する方法 ①functions.phpに以下のコードを追加 function test_shortcode() { return 'This is URAWA.'; } add_sh... 2021.11.03 ITPHPWordPress
IT WordPressでPHPを読み込む方法(外部PHPファイル) 外部PHPファイルを読み込むショートコードを作成する方法 ①functions.phpに以下のコードを追加 function my_php_Include($params = array()) { extract(short... 2021.11.03 ITPHPWordPress