Дайте ссылку на оф. репо ВП с вашими плагинами.
<button class="btn needle" id="btn1">Кнопка 1</button>
<button class="btn needle" id="btn2">Кнопка 2</button>
<input id="your_input" type="hidden" class="hidden" value=""/>
jQuery(document).ready(function() {
jQuery('.needle').on('click', function(){
var id=jQuery(this).attr('id');
jQuery('#your_input').attr('value',id);
});
});
jQuery(document).ready(function(){
jQuery('input#s').on('change',function(){
if(jQuery(this).val()!=''){jQuery('#searchsubmit').attr('disabled','disabled');}else{
jQuery('#searchsubmit').removeAttr('disabled);}
});
});