我正在尝试将自定义HTML、CSS和JQuery代码添加到某些 wordpress 帖子中,但我不知道我是否使用了正确的方法,因为我只是将代码添加到帖子中。因为会有更多可能需要使用自定义代码的帖子,通过这种方法,我也必须复制/粘贴和自定义相同的代码到这些帖子。 有没有更好的方法来做到这一点?
我对创建wordpress 插件知之甚少,但一个想法告诉我插件是正确的方法,如果是这样,我怎么能把它变成 wordpress 的插件?
以下是代码示例:
<p style="text-align: left;">Post begins here and this is the text...
<div class="myDiv" >button</div>
<style type="text/css">
.myDiv{
color: #800080;
border: #000;
border-radius: 20px;
border-style: solid;
width: 50px;
}
</style>
<script type="text/javascript">
<!--
$(".farzn").on("click", function(){
alert('its Working');
});
//--></script>