不是很优雅,但应该可以。。。
$sep = " | ";
$args = array(
\'before\'=>\'\',
\'after\'=>$sep,
\'category_after\'=>\'\',
\'category_before\'=>\'\',
\'title_li\'=>\'\',
\'echo\'=>0 //return the string, don\'t echo
);
$str = wp_list_bookmarks($args);
//chop off the last separator...
$str = substr($str, 0, strlen($str) - strlen($sep));
echo $str;
编辑--我添加了
before
和
after
到
$args
数组--这些实际上是
_walk_bookmarks()
在每个链接之前和之后使用。