Why is get_theme_mod() Throwing a Fatal Error: Call to undefined function in wordpress
Why is get_theme_mod() Throwing a Fatal Error: Call to undefined function in wordpress
我正在构建一个 wordpress 主题。在我的 index.php 中,我使用 get_theme_mod() 来获取一个选项,并且我有一些代码会根据该选项触发或不触发。
<!-- index.php -->
<?php
/**
* The main template file
*
*/
if (!empty(get_theme_mod( 'czen_hero' ))) {
$header_logo = get_theme_mod( 'czen_hero' );
}
if (!empty(get_theme_mod( 'czen_hero_text' ))) {
$header_text = get_theme_mod( 'czen_hero_text' );
}
这些选项在 functions.php 中定义并通过 wordpress 的定制器设置。
// HOMEPAGE HEADER
$wp_customize->add_section( 'czen_hero_section' , array(
'title' => __( 'Custom Homepage Header', 'coffee-zen' ),
'priority' => 40,
'description' => 'Upload an image and enter some text to create a custom header',
) );
$wp_customize->add_setting( 'czen_hero' , array ( 'sanitize_callback' => 'czen_sanitize_setting', ) );
$wp_customize->add_setting( 'czen_hero_text', array ( 'sanitize_callback' => 'czen_sanitize_setting', ) );
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'czen_hero', array(
'label' => __( 'Header Image', 'coffee-zen' ),
'section' => 'czen_hero_section',
'settings' => 'czen_hero',
) ) );
$wp_customize->add_control( 'header_text', array(
'label' => __( 'Header Text', 'coffee-zen' ),
'section' => 'czen_hero_section',
'settings' => 'czen_hero_text',
'type' => 'text',
) );
代码有效。设置这些设置后,html 会出现在它应该出现的位置。但是,每次我在前端加载页面时,我在检查时都会看到:
<!-- index.php -->
<br />
<b>Fatal error</b>: Uncaught Error: Call to undefined function get_theme_mod() in /var/www/vhosts/zentest/wp-content/themes/coffee-zen/index.php:7
Stack trace:
#0 {main}
thrown in <b>/var/www/vhosts/zentest/wp-content/themes/coffee-zen/index.php</b> on line <b>7</b><br />
我可以确认函数定义在 /wp-includes/theme.php,第 855 行到第 879 行:
function get_theme_mod( $name, $default = false ) {
$mods = get_theme_mods();
if ( isset( $mods[$name] ) ) {
/**
* Filters the theme modification, or 'theme_mod', value.
*
* The dynamic portion of the hook name, `$name`, refers to
* the key name of the modification array. For example,
* 'header_textcolor', 'header_image', and so on depending
* on the theme options.
*
* @since 2.2.0
*
* @param string $current_mod The value of the current theme modification.
*/
return apply_filters( "theme_mod_{$name}", $mods[$name] );
}
if ( is_string( $default ) )
$default = sprintf( $default, get_template_directory_uri(), get_stylesheet_directory_uri() );
/** This filter is documented in wp-includes/theme.php */
return apply_filters( "theme_mod_{$name}", $default );
}
所以我的问题是,如何防止这种情况发生 "Fatal Error"?是什么原因造成的?我可以很好地使用其他 Wordpress 核心功能。
我禁用了所有插件,问题仍然存在。所有主流浏览器都会出现此问题。我正在使用 wordpress 版本 4.8。
提前致谢。
您可以使用
阻止直接加载 WordPress 主题文件
if (!defined('ABSPATH')) die();
也许通过将此添加到主题的索引文件中,您可以防止错误。
我正在构建一个 wordpress 主题。在我的 index.php 中,我使用 get_theme_mod() 来获取一个选项,并且我有一些代码会根据该选项触发或不触发。
<!-- index.php -->
<?php
/**
* The main template file
*
*/
if (!empty(get_theme_mod( 'czen_hero' ))) {
$header_logo = get_theme_mod( 'czen_hero' );
}
if (!empty(get_theme_mod( 'czen_hero_text' ))) {
$header_text = get_theme_mod( 'czen_hero_text' );
}
这些选项在 functions.php 中定义并通过 wordpress 的定制器设置。
// HOMEPAGE HEADER
$wp_customize->add_section( 'czen_hero_section' , array(
'title' => __( 'Custom Homepage Header', 'coffee-zen' ),
'priority' => 40,
'description' => 'Upload an image and enter some text to create a custom header',
) );
$wp_customize->add_setting( 'czen_hero' , array ( 'sanitize_callback' => 'czen_sanitize_setting', ) );
$wp_customize->add_setting( 'czen_hero_text', array ( 'sanitize_callback' => 'czen_sanitize_setting', ) );
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'czen_hero', array(
'label' => __( 'Header Image', 'coffee-zen' ),
'section' => 'czen_hero_section',
'settings' => 'czen_hero',
) ) );
$wp_customize->add_control( 'header_text', array(
'label' => __( 'Header Text', 'coffee-zen' ),
'section' => 'czen_hero_section',
'settings' => 'czen_hero_text',
'type' => 'text',
) );
代码有效。设置这些设置后,html 会出现在它应该出现的位置。但是,每次我在前端加载页面时,我在检查时都会看到:
<!-- index.php -->
<br />
<b>Fatal error</b>: Uncaught Error: Call to undefined function get_theme_mod() in /var/www/vhosts/zentest/wp-content/themes/coffee-zen/index.php:7
Stack trace:
#0 {main}
thrown in <b>/var/www/vhosts/zentest/wp-content/themes/coffee-zen/index.php</b> on line <b>7</b><br />
我可以确认函数定义在 /wp-includes/theme.php,第 855 行到第 879 行:
function get_theme_mod( $name, $default = false ) {
$mods = get_theme_mods();
if ( isset( $mods[$name] ) ) {
/**
* Filters the theme modification, or 'theme_mod', value.
*
* The dynamic portion of the hook name, `$name`, refers to
* the key name of the modification array. For example,
* 'header_textcolor', 'header_image', and so on depending
* on the theme options.
*
* @since 2.2.0
*
* @param string $current_mod The value of the current theme modification.
*/
return apply_filters( "theme_mod_{$name}", $mods[$name] );
}
if ( is_string( $default ) )
$default = sprintf( $default, get_template_directory_uri(), get_stylesheet_directory_uri() );
/** This filter is documented in wp-includes/theme.php */
return apply_filters( "theme_mod_{$name}", $default );
}
所以我的问题是,如何防止这种情况发生 "Fatal Error"?是什么原因造成的?我可以很好地使用其他 Wordpress 核心功能。
我禁用了所有插件,问题仍然存在。所有主流浏览器都会出现此问题。我正在使用 wordpress 版本 4.8。
提前致谢。
您可以使用
阻止直接加载 WordPress 主题文件if (!defined('ABSPATH')) die();
也许通过将此添加到主题的索引文件中,您可以防止错误。