我正在尝试在提交发布或待审核等之前获取wordpress帖子的帖子标题。我正在使用图片中显示的代码。请看图片。
答案 0 :(得分:2)
尝试:
jQuery(document).ready(function($){
$('#publish').click(function(event){
event.preventDefault();
var title = $('#title').val();
/** do whatever with the title here */
});
});