由于它是一个独立的脚本,您可以直接链接到它,WordPress将不会更聪明。只需确保链接正确-如果它在你的主题中,它将类似于:
http://example.com/wp-content/themes/my-theme/generate-pdf.php
但不要硬编码URL,请使用可用的模板函数:
<a href="<?php bloginfo( \'template_url\' ) ?>/generate-pdf.php">Generate!</a>
当然,如果你想要一个“漂亮”的URL,你可以使用
the rewrite API.