wordpress notice

时间:2020-03-17 作者:Faisal Shafiq

注意:在/home/bv5u96fbxm8x/public\\u html/wp-content/themes/123garden/option-tree/ot-loader中只能通过引用传递变量。php在线98

kindly provide me solution for this thanks!

$path = ltrim( end( @explode( get_template(), str_replace( \'\\\\\', \'/\', dirname( __FILE__ ) ) ) ), \'/\' );
define( \'OT_LANG_DIR\', trailingslashit( trailingslashit( get_template_directory() ) . $path ) . trailingslashit( \'languages\' ) . \'theme-mode\' );  
}

1 个回复
SO网友:Rup

我想问题是end(), 它接受数组引用。尝试将explode()结果保存在变量中,并将其传递给end():

$path_components = @explode( get_template(), str_replace( \'\\\\\', \'/\', dirname( __FILE__ ) ) );
$path = ltrim( end( $path_components ), \'/\' );
define( \'OT_LANG_DIR\', trailingslashit( trailingslashit( get_template_directory() ) . $path ) .
                       trailingslashit( \'languages\' ) . \'theme-mode\' );
或者有很多other ways to get the last element of an array 可以使用而不是end()。

相关推荐

生成元素的PHP代码在哪里?

当我对网站上某些元素的CSS/HTML/JS感兴趣时,我会预览它并在浏览器devtools中测试修改。我在这里很清楚。在PHP中是如何实现的?我在WordPress上有一个页面,我对一些元素感兴趣。我想知道生成这个元素的PHP代码在哪里。然后我想修改此代码并查看更改。最聪明的方法是什么?我知道我需要设计->主题编辑器中的文件。我也使用儿童主题。我在函数中实现了一些JS脚本。php。现在我感兴趣的是,例如,在主收藏和单个帖子中包含作者信息的元素。或者另一个问题:在编辑文章时,我们有“作者”字段。另一种