我想链接到我的子主题的 pdf 文件夹中的 aa pdf,目前我正在使用以下 php
<?php echo esc_url( home_url( '/wp-content/themes/child-theme/pdf/bar.pdf' ) ); ?>
并且想知道是否有更优雅的方式来做到这一点,不涉及包括 wp-content/themes ?
The best way to reach your child theme is through get_stylesheet_directory_uri()
.
<?php echo get_stylesheet_directory_uri() . '/pdf/bar.pdf'; ?>
You can find more information in the Codex: get stylesheet directory uri
只需在您的根目录中创建一个名为的新目录pdf
echo '<a href="/pdf/doc.pdf">Anchor Text</a>';
但是,我不确定这会带来什么真正的好处。