jQuery(function($){ $(".acf-style-select").select2(); $(".js-tags").select2({ tags: true, tokenSeparators: [",", " "], width: "100%", placeholder: "Slug hinzufügen…", createTag: function(params) { var term = $.trim(params.term); if (term === "") return null; return { id: term, text: term, newTag: true }; } }); $(".nav-tab").on("mousedown", function(e){ e.preventDefault(); }); }); '; } add_action('admin_enqueue_scripts', 'pausera_enqueue_assets');