我正在自定义 wordpress 博客,我需要制作自定义侧边栏小部件。我的 PHP 充其量是生锈的。我想要做的是将一个 php 变量连接到一个被设置为数组元素的字符串中。这是我正在使用的代码,它似乎不起作用。它所做的只是在每一页的顶部打印样式表目录:
if ( function_exists("register_sidebar") )
register_sidebar(array(
"before_widget" => "<div class=\"rounded_box\"><div class=\"top_curve\"><img src=\"".bloginfo('stylesheet_directory')."/images/top_curve.jpg\" alt=\"Top\" width=\"247\" height=\"9\" /></div><div class=\"middle\">",
"after_widget" => "</div><div class=\"bottom_curve\"><img src=\"".bloginfo('stylesheet_directory')."/images/bottom_curve.jpg\" alt=\"Bottom\" /></div></div>",
"before_title" => "<h2>",
"after_title" => "</h2>",
));
所以你可以在这里看到我正在尝试将bloginfo('stylesheet_directory')
2 个元素连接起来。这不能正常工作。它只是最终将其打印在doctype
.