Make Giphy API key configurable via WordPress option: reads from beep_giphy_key option, sets default on init, passes to BeepConfig.giphyKey for frontend JS

This commit is contained in:
Krystie
2026-05-18 15:25:26 -07:00
parent bd74e793ff
commit aad4d8e21e
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -720,7 +720,7 @@
}
/* ---------- GIF Picker (Giphy) ---------- */
var GIPHY_API_KEY = 'xuxYxuIvzPqw5tPB4laa7sQO8dFtSlNS';
var GIPHY_API_KEY = (window.BeepConfig && window.BeepConfig.giphyKey) || '';
function openGifPicker(compose) {
var modal = document.querySelector('[data-beep-gif-modal]');