我打破了我的WordPress functions.php(Wordpress,PHP)

时间:2017-03-15 15:57:33

标签: php wordpress function woocommerce

好像我打破了我的Wordpress functions.php。 在编辑帖子或产品(Woocommerce)时,这是我得到的错误:

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web22959994/html/repair/wp-content/themes/freestore-child/functions.php:24) in /var/www/web22959994/html/repair/wp-admin/post.php on line 197

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web22959994/html/repair/wp-content/themes/freestore-child/functions.php:24) in /var/www/web22959994/html/repair/wp-includes/pluggable.php on line 1179

正如错误所说,问题似乎出现在functions.php中。我已经确认通过彻底清空它来解决错误。 这是我的functions.php:

<?php
function my_theme_enqueue_styles() {

$parent_style = 'freestore'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.

wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
    get_stylesheet_directory_uri() . '/style.css',
    array( $parent_style ),
    wp_get_theme()->get('Version')
);
}

add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 16;' ), 20 );
add_filter( 'woocommerce_variable_free_price_html', 'hide_free_price' );
add_filter( 'woocommerce_free_price_html', 'hide_free_price' );
add_filter( 'woocommerce_variation_free_price_html', 'hide_free_price' );
function hide_free_price($price){
return ('Ab 99');
};
?>

我通过一些PHP检查器运行它并且没有发现问题。其中大部分都是非常基本的东西(为子主题添加样式,通过过滤器编辑一些小函数)。然而它似乎被打破了,我个人不知道为什么。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

嗯,我猜我自己做了一个完整的**。结束标记后我有两行。问题是固定的。