Support & Downloads

Quisque actraqum nunc no dolor sit ametaugue dolor. Lorem ipsum dolor sit amet, consyect etur adipiscing elit.

s f

Contact Info
198 West 21th Street, Suite 721
New York, NY 10010
[email protected]
+88 (0) 101 0000 000
Follow Us

חלב ודבש בניית אתרי אינטרנט

וורדפרס – הצגת תפריט עם הילדים (רמה 1) ללא הנכדים (רמה 2)

בהרבה אתרי וורדפרס אני נדרש להציג קישורים לבנים או הילדים  (רמה 1) של העמודים או עמוד ספציפי. אחת הדרכים היא על ידי השימוש בקוד הבא:

post_parent)
{
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
$titlenamer = get_the_title($post->post_parent);
}
else
{
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
$titlenamer = get_the_title($post->ID);
}
if ($children)
{ ?>

הפעם נדרשתי להציג את הילדים (רמה 1) ללא הנכדים (רמה 2) מה שצריך היה לעשות הוא להוסיף את הפרמטר depth=1

post_parent)
{
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0&depth=1");
$titlenamer = get_the_title($post->post_parent);
}
else
{
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0&depth=1");
$titlenamer = get_the_title($post->ID);
}
if ($children)
{ ?>