我目前正在创建自己的插件窗口.打印我的WordPress网站上的文章。但似乎我不能通过点击访问的功能。如果我把窗口.打印在按钮本身的工作,但这不是它如何为我工作。
// Only do this when a single post is displayed
if ( is_single() ) {
// Message you want to display after the post
$content .= '<button type="Submit" value="Print_PDF" onclick="GetPDF()"> Print PDF </button>';
}
// Return the content
return $content;
}```
But whenever i click the button i get an error that says that it does not acces this function:
``` function GetPDF() {
window.print();
}```
It is in the same file.
2条答案
按热度按时间xtfmy6hx1#
试试这个:
fgw7neuy2#
HTML元素的onclick属性查找javascript函数,它不能运行PHP函数。
参见this question