テスト

// anthem_子テーマ初期設定
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
  /* CSSファイルの読み込み */
  wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array(), false );
  wp_enqueue_style( 'anthem-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') );
  /* JSファイルの読み込み */
  wp_enqueue_script( 'yagi-scripts', get_stylesheet_directory_uri().'/scripts.js', array( 'jquery' ), false, true );
}

// ショートコードで囲んだ範囲のpタグを消す
add_shortcode('nop','nop_func');
function nop_func($atts, $content = null) {
  $content = str_replace( '<p>' , '' , $content );
  $content = str_replace( '</p>' , '' , $content );
  return $content;
}

関連記事

コメント

この記事へのコメントはありません。

TOP