提问人:Russ Clarke-Wildeman 提问时间:11/1/2023 最后编辑:isherwoodRuss Clarke-Wildeman 更新时间:11/1/2023 访问量:21
为什么我的脚本只能在自定义模式下工作?
Why is my script only working in customise mode?
问:
我有这个工作,但我现在有一个特殊的问题。
在 Wordpress 中,有一个带有类的 div,该类使用简码显示事件。当没有事件时,我想显示一条消息。.event-post-content
我使用的代码如下...
jQuery(document).ready(function(){
if (jQuery('.event-post-content').is(':empty')){
jQuery('.event-post-content').html('<p style="font-size: 16px;font-family: Source Sans Pro;font-weight:bold;">Sorry, there are no events scheduled in this category at present.</p>');
}
});
如果我在网站的前端查看此消息,则不会显示该消息,但是如果我进入“自定义”模式,则会显示该消息??有什么想法吗?
答: 暂无答案
评论