別ページへのアンカーリンクがうまくいかない

遷移先ページへ以下を記述する

$(window).load(function () {
  var lochref = window.location.href;
  if (lochref.indexOf("#") > -1) {
    var anchor = lochref.slice(lochref.indexOf("#"));
    window.setTimeout(function () {
      $("body, html").animate(
        {
          scrollTop: $(anchor).offset().top,
        },
        1
      );
    }, 1);
  }
});

よくある質問

/* ===============================================
  # faq
  =============================================== */

jQuery(function ($) {
  $(".question").on("click", function () {
    /*クリックでコンテンツを開閉*/
    $(this).next().slideToggle(200);
    /*矢印の向きを変更*/
    $(this).toggleClass("open", 200);
  });
});

acfでiframeを使う方法

functions.phpに以下を追加する

add_filter( 'wp_kses_allowed_html', 'acf_add_allowed_iframe_tag', 10, 2 );
  function acf_add_allowed_iframe_tag( $tags, $context ) {
  if ( $context === 'acf' ) {
  $tags['iframe'] = array(
  'src' => true,
  'height' => true,
  'width' => true,
  'frameborder' => true,
  'allowfullscreen' => true,
  );
  }
  
  return $tags;
  }