• Есть код хлебных крошек на WP

    Выводит родительскую страницу из меню (PHOTO):

    Home » PHOTO » wedding

    А надо так:

    Home » wedding

    <?php /*
    Plugin Name:  Yoast Breadcrumbs
    Plugin URI:   http://yoast.com/wordpress/breadcrumbs/
    Description:  Outputs a fully customizable breadcrumb path.
    Version:      0.7.2
    Author:       Joost de Valk
    Author URI:   http://yoast.com/ 
    
    Copyright (C) 2008, Joost de Valk
    All rights reserved.

    Остальное я вырезал.
    Правила читайте.
    — Atrax

Просмотр 1 ответа (всего 1)
  • Видимо все дело в этой части кода:

    // If this is a top level Page, it's simple to output the breadcrumb  
    
            if ( 0 == $post->post_parent ) {
                $output = $homelink." ".$opt['sep']." ".bold_or_not(get_the_title());
            } else {
                if (isset($post->ancestors)) {
                    if (is_array($post->ancestors))
                        $ancestors = array_values($post->ancestors);
                    else
                        $ancestors = array($post->ancestors);
                } else {
                    $ancestors = array($post->post_parent);
                }
Просмотр 1 ответа (всего 1)
  • Тема «Простая задачка для программиста» закрыта для новых ответов.