目前我正在为Wordpress开发一个图库插件,我想让我的用户选择图库的位置(在the_content之前或之后)。
目前,我已经成功地把它放在内容之后,通过这样挂入the_content:
function add_post_content($content) {
if ( 'gallery' == get_post_type() && is_single() ) {
$content .= gallery_frontend();
$content .= gallery_map_display();
}
if ( 'gallery' == get_post_type() && is_archive() ) {
// archive functions here
}
return $content;
}
add_filter('the_content', 'add_post_content');
有没有办法让它在the_content之前显示而不是之后?
答案 0 :(得分:1)
你能不能在另一个方向连接?
$content = gallery_frontend() . gallery_map_display() . $content;
我不确定你的函数是做什么的,但是如果它们只是返回字符串数据那么这应该可以正常工作。