我正在尝试在 the_content() 之后添加附件库,但它并没有移到 the_content() 下方,而是移到 the_content() 的顶部
我已将优先级设置为 9999,但仍然无法正常工作。请问有什么想法或建议吗?
add_filter('the_content', 'admin_gallery_after_content', 9999);
function admin_gallery_after_content($content)
{
$admin_gallery = new q2a_rm_front;
$content .= $admin_gallery->rm_admin_gallery();
return $content;
}