0

我想链接到我的子主题的 pdf 文件夹中的 aa pdf,目前我正在使用以下 php

<?php echo esc_url( home_url( '/wp-content/themes/child-theme/pdf/bar.pdf' ) ); ?>

并且想知道是否有更优雅的方式来做到这一点,不涉及包括 wp-content/themes ?

4

2 回答 2

1

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

于 2012-08-31T19:06:55.937 回答
0

只需在您的根目录中创建一个名为的新目录pdf

echo '<a href="/pdf/doc.pdf">Anchor Text</a>';

但是,我不确定这会带来什么真正的好处。

于 2012-08-31T18:56:39.517 回答