Files
branddefense.pl/wp-content/themes/solarify/js/featured-content-admin.js
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

10 lines
313 B
JavaScript

/**
* Featured Content admin behavior: add a tag suggestion
* when changing the tag.
*/
/* global ajaxurl:true */
jQuery( document ).ready( function( $ ) {
$( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } );
});