PHP已弃用:WP_RSSjb具有已弃用的构造函数

时间:2017-11-19 作者:Cynthia A Lockley

我在调试中收到消息。PHP日志已弃用:在PHP的未来版本中,与类同名的方法将不会是构造函数;WP\\U RSSjb在/home/dccomp/competitions中有一个已弃用的构造函数。com/wp-content/plugins/rss-just-better/rss-just-better。php第57行。

如何修改此内容?这条线是

class WP_RSSjb extends WP_Widget {

/**
 * Widget setup.
 */
function WP_RSSjb() {
 /* Widget settings. */
$widget_ops = array( \'classname\' => \'rssjustbetter\', \'description\' => __(\'A customizable list of feed items given: URL and number of displayable items. Also available as shortcode. Compatible with RSS vers. 0.91, 0.92 and 2.0 & Atom 1.0.\', \'RSSjb\') );

/* Widget control settings. */
    $control_ops = array( \'width\' => 300, \'height\' => 350, \'id_base\' => \'rss-just-better\' );

/* Create the widget. */
    parent::__construct( \'rss-just-better\', __(\'RSS Just Better\', \'RSSjb\'), $widget_ops, $control_ops );
}
谢谢你的帮助。

1 个回复
最合适的回答,由SO网友:Nathan Johnson 整理而成

改变function WP_RSSjb() {function __construct() {. 看见PHP: Constructors and Destructors.

结束

相关推荐

在函数.php中检查footer.php中是否存在函数

我正在尝试保护来自的版权链接footer.php 文件,我想在footer php中创建一个函数,该函数将包含这些链接,然后我想从函数中进行检查。php如果该函数存在于页脚中,如果它不存在,我想显示一个exit(); 作用我还计划对页脚和函数php代码进行编码。我试过了function_exists() 但只有当我正在检查的函数与函数\\u exists位于同一个文件中时,它才起作用。有人能告诉我怎么解决这个问题吗?给你加油!