我是新來的wordpress,我已經使用博客這是好的,但目前我想添加第三方代碼到wordpress,而不使用主題編輯器。而我使用example.wordpress.com。如何在WordPress中添加第三方插件或代碼如博主
我的意思是喜歡博客通過添加小部件我的意思是喜歡html/javascript
部件我們可以添加它,但在WordPress的iam糊塗添加它沒有第三方小部件在我的wordpress儀表板我如何添加代碼。提前幫助會很明顯。
<link rel="stylesheet" href="http://harvesthq.github.io/chosen/chosen.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="http://harvesthq.github.io/chosen/chosen.jquery.js" type="text/javascript"></script>
<div>
<em>Multiple Select with Groups</em><br>
<select data-placeholder="Your Favorite Football Team" style="width:350px;" class="chosen-select" multiple tabindex="6">
<option value=""></option>
<option value="1" data-value="grapes+">grapes</option>
<option value="2" data-value="mango+">mango</option>
</select>
</div>
<script type="text/javascript">
$(".chosen-select").chosen();
$(".chosen-select").bind('chosen:hiding_dropdown', function(e, i) {
searched_value = i.chosen.get_search_text();
firstElementOnDropdown = i.chosen.search_results.find('li.active-result').first()
if (firstElementOnDropdown.text().toLowerCase() == searched_value.toLowerCase()) {
firstElementOnDropdown.trigger('mouseup');
var t = i;
setTimeout(function() {
t.chosen.input_blur();
}, 150);
}
});
</script>