如何向主题添加链接';使用WP插件的页脚


How to add a link to the theme's footer using a WP plugin

到目前为止,我有这个。

add_action('wp_footer', array($this, 'add_content_footer'));
function add_content_footer()
{
    echo 'my link';
}

但这段代码并没有将链接(或其他什么)放在主题的页脚中。只需在页面底部添加内容即可
有什么办法做到这一点吗?

尝试回显链接锚点它将打印链接(如果在wp_footer上调用-链接将位于页脚上)

作为一种选择,您可以下载任何具有此功能的插件,并搜索链接已挂接到的操作