Zadejte hledaný výraz...

WordPress – widget error po aktualizaci

Lukáš
verified
rating uzivatele
(9 hodnocení)
11. 11. 2015 16:57:19
Právě jsem aktualizoval Wordpress na nejnovější verzi, nicméně v adminu to začalo vypisovat toto:
Pro konstruktor třídy WP_Widget není podporována už od verze 4.3.0! Použijte prosím raději funkci
__construct()
. in /home/www/nazevwebu.cz/www/wp-includes/functions.php on line 3457
na 3457 řádku je toto:
/**
* Filter whether to trigger an error for deprecated functions.
*
* `WP_DEBUG` must be true in addition to the filter evaluating to true.
*
* @since 4.3.0
*
* @param bool $trigger Whether to trigger the error for deprecated functions. Default true.
*/
if ( WP_DEBUG && apply_filters( 'deprecated_constructor_trigger_error', true ) ) {
if ( function_exists( '__' ) ) {
trigger_error( sprintf( __( 'The called constructor method for %1$s is deprecated since version %2$s! Use %3$s instead.' ), $class, $version, '
__construct()
' ) );
} else {
trigger_error( sprintf( 'The called constructor method for %1$s is deprecated since version %2$s! Use %3$s instead.', $class, $version, '
__construct()
' ) );
}
}
Absolutně netuším, co se po mě chce :) nemohl by někdo pomoci?
Díky za tipy!
11. 11. 2015 16:57:19
https://webtrh.cz/diskuse/wordpress-widget-error-po-aktualizaci#reply1152500
Na jednom blogu se o tom píše :-)
http://musilda.cz/php-4-constructor-ve-wordpressu-4-3/
11. 11. 2015 17:21:47
https://webtrh.cz/diskuse/wordpress-widget-error-po-aktualizaci#reply1152499
Pro odpověď se přihlašte.
Přihlásit