Breadcrumbs and URL rewrite for pod pages

0

Hi!,

I have just finished my site programming and I need now to center on SEO(If All in SEO wordpress plugin could be used it would be fantastic). I'm aware this plugins can be just used only when using wordpress pages, but wordpress pages seem not to support wildcards. How do you handle this situation? The ideal solution would be to be able to support wordpress pages with wildcard support and use the power of wordpress url rewritting to accomplish this, but don't know if this is possible.

In the other hand I have read 2 or 3 old posts on the forum about how to integrate breadcrumbs with pods. They seem a bit quirk and outdated. Has anyone found a good way to add breadcrumb support for pods pages or in my case wordpress pages showing pods? I'm really interested in it.

Thanks in advance.

asked Dec 21 '11 at 8:32

hexdump

1

edited Dec 21 '11 at 10:17

add comment
enter at least 15 characters

1 Answer

0

this run fine for me "saw" in these forum

<div> <ul class="bread_crumb"> <li><a href="/">Inicio</a></li> <?php $count = 0; $url = ("/" . pods_url_variable($count)); while(pods_url_variable($count) != pods_url_variable('last')) { $title = (pods_url_variable($count)); echo "<li><a href='" . $url . "'>" . $title . "</a></li>"; $count ++; $url .= ("/" . pods_url_variable($count)); } echo "<li class='current'>" . pods_url_variable('last') . "</li>"; ?> </ul>

</div>

Insert it in your 'pages'

answered Feb 4 at 7:52

adriavidal

5

add comment
enter at least 15 characters