我正在使用wordpress中的插件。我想在我的数据库中推送一些数据
我想在我的徽标上找到这样的东西:
$logoname = "<img src='".$pluginlocation."".$name.".gif'>";
有类似的东西(那不起作用):
$pluginlocation = echo plugin_dir_url( __FILE__ ) .'/image' ;
tx;)
答案 0 :(得分:0)
尝试以下代码:
<?php
echo '<img src="' . plugins_url( 'images/your_image_name.gif', dirname(__FILE__) ) . '" > ';
?>
有关详细信息,请参阅https://codex.wordpress.org/Function_Reference/plugins_url