0
我正在使用$page = get_page_by_title('$name');
來顯示頁面的比賽。但是,當我使用echo $page->post_content;
段落不是在p標籤中包裝,通常是在wordpress循環中使用the_content()
時的情況。有沒有辦法解決這個問題或更好的方法來獲取將有標籤的內容?段落標記和get_page_by_title()
我正在使用$page = get_page_by_title('$name');
來顯示頁面的比賽。但是,當我使用echo $page->post_content;
段落不是在p標籤中包裝,通常是在wordpress循環中使用the_content()
時的情況。有沒有辦法解決這個問題或更好的方法來獲取將有標籤的內容?段落標記和get_page_by_title()
post_content
的值與用戶在帖子編輯器中輸入的無格式輸入相同。爲了獲得格式化的輸出,你必須應用適當的過濾器。
echo apply_filters('the_content', $page->post_content);
這應該適當的輸出濾波器適用於post_content
場,給你你通常會從the_content()
得到相同的值。