web-dev-qa-db-ja.com

PHP 廃止予定:WP_RSSjbには廃止予定のコンストラクタがあります

PHPに関するメッセージがdebug.logに記録されます。非推奨:クラスと同じ名前のメソッドは、将来のバージョンのPHPではコンストラクターにはなりません。 WP_RSSjbの57行目の/home/dccomp/competitions.com/wp-content/plugins/rss-just-better/RSS-just-better.phpに、非推奨のコンストラクタがあります。

これをどうやって修正できますか?行は

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

function WP_RSSjb() {function __construct() {に変更してください。 PHP:コンストラクタとデストラクタ を参照。

3
Nathan Johnson