@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
// codocのJavaScriptを読み込む
function load_codoc_script() {
  echo '<script async src="https://codoc.jp/js/codoc.js"></script>';
}
add_action('wp_footer', 'load_codoc_script');

// codocショートコードを定義
function codoc_button_shortcode() {
  return '<div class="codoc-embed" data-id="ここにあなたのdata-idを入れてください"></div>';
}
add_shortcode('codoc_button', 'codoc_button_shortcode');
function add_default_post_tags( $post_ID ) {
  $default_tags = array( '寝取られ体験記', '彼女貸出しブログ', '僕のおもちゃ' );
  wp_set_post_tags( $post_ID, $default_tags, true );
}
add_action( 'publish_post', 'add_default_post_tags' );

/* Facebookボタンを完全非表示 */
.sns-share .facebook-button,
.share-menu-content .facebook-button {
  display: none !important;
}

/* 記事下の丸ボタン・ぼかし風エリアを非表示 */
#sns-share-bottom,
.share-menu-content {
  display: none !important;
}
function my_custom_editor_style() {
  add_theme_support( 'editor-styles' );
  add_editor_style( get_stylesheet_directory_uri() . '/editor-style.css' );
}
add_action( 'after_setup_theme', 'my_custom_editor_style' );
