使用html标记为小部件区域标题

时间:2013-02-19 05:31:18

标签: php wordpress function

我想在Widgets区域注册带有html自定义标题的侧边栏。

我的注册小部件功能如;

register_sidebar(array(
  'name' => __( '<img src="'.$keepAdminImages.'/_assets/_img/keepSignature.png" />' ),
  'id' => 'keepSense-Left',
  'description' => __( 'keepSense Temanızda Sol alanda yer alacak bileşenlerinizi bu kısma sürükleyip bırakabilirsiniz.' ),
  'before_title' => '<h1>',
  'after_title' => '</h1>'
));
$keepAdminImages = get_bloginfo('template_url');

它的输出似乎是:http://prntscr.com/tbbmw如何在该区域使用某些html标签?有帮助吗?感谢。

1 个答案:

答案 0 :(得分:0)

法提赫,我认为你不能在管理区域使用图像。您检查了http://core.trac.wordpress.org/browser/tags/3.5.1/wp-includes/widgets.php#L0吗?