內我在WordPress的子主題,我想在每一個帖子的末尾插入此代碼:插入PHP函數
<?php the_tags(); ?>
我不想要編輯的single.php。我想通過的functions.php
插入此代碼,我發現這個線程和使用這個答案代碼:https://wordpress.org/support/topic/insert-info-into-bottom-of-posts#post-3990037
它的工作很適合我,但我無法弄清楚如何插入我的PHP代碼。
這些都是我試過,但沒有反映什麼,我在前端想要的東西:
$content.= '<?php the_tags(); ?>';
$content.= ' the_tags();';
$content.= <?php the_tags(); ?>;
$content.= the_tags();
我如何改變在WordPress的線程的代碼,包括PHP?
謝謝。
你好。感謝解釋爲什麼我的代碼錯了!我對學習PHP如何工作非常感興趣。我試着輸入$ content。= get_the_tag_list();它似乎沒有奏效。我也試過$ content。= get_the_tags();那也沒用。有任何想法嗎? – Tara 2015-04-05 02:32:23
@Tara你能用更多的代碼更新你的問題嗎? – 2015-04-05 02:33:42
哦,我的天哪。當我發佈SE之前,我意識到我已經註釋了我的代碼,因此我不想在前端反映任何內容。你的代碼工作!非常感謝。 – Tara 2015-04-05 02:35:37