未定义的索引:Sui_IMAGE_CAPTION

时间:2018-07-21 作者:Dilip Bagdi

我收到以下错误:

注意:未定义索引:sui\\u image\\u caption in/home/xxxxx/public\\u html/xxxxx。com/wp-content/plugins/source/submit\\u user\\u图片。php第73行

注意:未定义索引:sui\\u image\\u category in/home/xxxxx/public\\u html/xxxx。com/wp-content/plugins/source/submit\\u user\\u图片。php第73行

我已经安装了这个插件;https://code.tutsplus.com/articles/allow-users-to-submit-images-to-your-wordpress-site--wp-22601

第73行显示错误,即:

echo sui\\u get\\u upload\\u image\\u form($sui\\u image\\u caption=$\\u POST[\'sui\\u image\\u caption],$sui\\u image\\u category=$\\u POST[\'sui\\u image\\u category]);

有人能帮我解决这个问题吗。谢谢

1 个回复
SO网友:Rick Hellewell

这里通常不会回答(或鼓励)关于插件的问题。您应该联系插件的支持页面。

但是,错误出现在名为“source”的插件中,如错误消息所述。无论该插件是什么,请转到他们的支持页面。

如果您想暂时禁用该插件,请使用托管场所文件管理器的FTP程序重命名其文件夹(wp内容/插件/源)。然后重新加载管理页面,转到插件页面,您将看到插件现在已禁用。联系他们以获得进一步支持。

结束

相关推荐

redirect if shortcode exists

WordPress初学者。我试图检查用户请求的页面中是否存在短代码,如果存在,则在用户未登录时重定向。function redirect_to_home() { if (has_shortcode(get_the_content(), \'shortcode\')) { if(!is_admin() && !is_user_logged_in()) { //redirect exit(); }