Jump to content
  • 0

загодовки для breadcrumbs


cyklop77
 Share

Question

подскажите пожалуйста где можно изменить заголовки страниц, которые выводит breadcrumbsм проекте

 

например создаю страничку с заголовком "о проекте". мне нужно чтобы в breadcrumbs выводилось о нашем замечательном проекте. вроде простейшая вещь, но застрял на ней

 

 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Что за CMS?

Нужно саму функцию модернизировать

 

На худой конец - jQuery...  Но при этом в яндексе так и будет о проекте

Упс)) вордпресс...  

 

щас над вордпресом работаю.....   где то эта функция лежит. но я заморачиваться особо не стал - свою написал

Link to comment
Share on other sites

  • 0

Я вот так реализовал

function psyho_bread_crumb($id="",$li="",$count = 0){         if($count>10) return false;    if (!empty($id)){        $post = get_post($id);        $r = " > ";    }else{        $post = get_post();        $r = "";    }       $post_title = $post->post_title;    $link  = get_permalink( $post->ID ,false);    if($count == 0){       $li   = '<span>'.$post_title.'</span>'.$li;    }else{       $li   = '<a href="'.$link.'">'.$post_title.'</a>'.$r.$li;     }            if(isset($post->post_parent) and ( $post->post_parent !=0 and $post->post_parent != 49 and !empty($post->post_parent))){        psyho_bread_crumb($post->post_parent ,$li,$count+ 1);    }else{       echo '<a href="/">Главная</a> > '. $li;    }    }
  • Like 1
Link to comment
Share on other sites

  • 0

что-то не получается место в шаблоне, в которое вставлены breadcrumbs. никто не подскажет в каком файле обычно они находятся?

 

в соответствии с этим я ищу в index.php, page.php. причём и в основной, и в родительской теме

 

в шаблонах хедера и футера точно нет. мои breadcrumbs именно в контентной части страницы

 

куда ещё можно посмотреть? всё уже перепроверил(

Edited by cyklop77
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy