我試圖深入研究WordPress開發,我想知道當我們做var_dump($post->post_id)
時,它給出了該函數具有的對象列表。我說對象的原因是,我不知道它們是什麼。雖然它爲您提供了一個全面的屬性列表,您可以訪問WordPress代碼page狀態。我的問題是我如何可以訪問其他的功能和它的屬性,如:在WordPress功能上使用var_dump
`get_the_category();`, I might be naive to get a list of properties like
$category = get_the_category();
foreach ($category as $cat) {
echo $cat;
}
如何訪問一個WordPress函數的性質,一個例子是像$category->ID()
或者其他財產,其他的例子可能包括
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
?>
<?php
$test = get_cat_ID($post->ID);
var_dump($test)
?>
<?php }
}
?>
但在這個例子中,我得到一個int(0)
,所以我怎麼能在後獲得不同的屬性,如它的類別,刺蛾,分類等
你是什麼意思的Wordpress功能的屬性?你的意思是像這個函數的參數'get_adjacent_post($ in_same_term,$ excluded_terms,$ previous,$ taxonomy)'接受4個參數嗎? – cylua2
我也不明白這個問題.... – VolkerK
@VolkerK我粘貼的鏈接,鏈接到我正在談論的屬性。 – Nofel