Привет php wordpress людей,
Я использую плагин встроенного редактора для WordPress
Я знаю, что для целей SEO лучше всего убедиться, что это внешние файлы.
Когда я просматриваю исходный код в своем браузере, я вижу, что плагин javascript для встроенного редактора отображается в коде страницы.
Есть ли способ сделать это внешним js-файлом в рамках WordPress или он должен быть на странице, чтобы плагин работал?
спасибо за вашу помощь
С уважением
* 1009 Judi *
Кто-нибудь знает, откуда это происходит? Я не вижу его на других своих сайтах, поэтому он должен быть из другого плагина?
<script type="text/javascript">
/* <![CDATA[ */
var ileNicEditor;
function startEditing(postId) {
jQuery("#ileEditLink"+postId).hide();
jQuery("#ileEditButton-"+postId).hide();
jQuery("#ileCancelButton-"+postId).show();
ileCreateNicEditor(postId);
}
function ileCreateNicEditor(postId) {
jQuery.ajax({async:false,
type:"POST",
url:"http://fr.com/wp-content/plugins/inline-editor/ajax-content.php",
data:"id="+postId,
success:function(data){
jQuery("#ileContent-"+postId).html(data);
}
});
ileNicEditor = new nicEditor({fullPanel:true,
iconsPath:"http://fr.com/wp-content/plugins/inline-editor/nicEditorIcons.gif",
onSave:function(content,id,instance){ileSave(postId,content)}
}).panelInstance("ileContent-"+postId,{hasPanel:true});;
jQuery("#ileCancelButton"+postId).show();
}
function ileSave(postId,content){
jQuery.post("http://fr.com/wp-content/plugins/inline-editor/ajax-save.php",
{"id":postId,
"content":content},
function(data){
alert(data.message)
jQuery("#ileCancelButton-"+postId).click();
},
"json");
}
/* ]]> */
</script>