0
我要鏈接到AA PDF這是我的孩子主題的PDF文件夾內,此刻我用下面的PHP我的wordpress子主題中鏈接到的PDF文件夾
<?php echo esc_url(home_url('/wp-content/themes/child-theme/pdf/bar.pdf')); ?>
和想知道是否有更優雅的方式來做到這一點,不涉及包括wp-content/themes?
我要鏈接到AA PDF這是我的孩子主題的PDF文件夾內,此刻我用下面的PHP我的wordpress子主題中鏈接到的PDF文件夾
<?php echo esc_url(home_url('/wp-content/themes/child-theme/pdf/bar.pdf')); ?>
和想知道是否有更優雅的方式來做到這一點,不涉及包括wp-content/themes?
達到您的孩子主題的最佳方式是通過get_stylesheet_directory_uri()
。
<?php echo get_stylesheet_directory_uri() . '/pdf/bar.pdf'; ?>
你可以在食品的詳細信息:get stylesheet directory uri
只需創建您的根新目錄pdf
echo '<a href="/pdf/doc.pdf">Anchor Text</a>';
不過,我不知道這會提供什麼真正的好處。
爲什麼不直接'/可溼性粉劑內容/主題/子主題/ PDF/bar.pdf'? –
你只是想讓鏈接指向WP文件夾之外的PDF目錄嗎? –
@paul是啊,那會很好 – styler