0

我想在小部件区域注册一个带有我的 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 标记?有什么帮助吗?谢谢。

4

1 回答 1

0

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

于 2013-02-19T08:14:59.470 回答