0
我用下面的短代碼來調用我的插件:[end_slider]更改寬度和高度WordPress的簡碼的jQuery插件
這是我在我的功能文件中的代碼:
function slider_func() {
?>
<script>
jQuery(document).ready(function($) {
$('#banner-fade').bjqs({
height: 350,
width: 980,
responsive: true
});
});
</script>
<?php
}
add_shortcode('end_slider', 'slider_func');
如何我可以創建一個函數來調整短代碼中插件的寬度和高度嗎?
的短代碼看起來是這樣的:[end_slider寬度=「980」 HEIGHT =「350」]
太感謝你了雅各! – Breon