A web developer's blog. PHP, MySQL, CakePHP, Zend Framework, Wordpress, Code Igniter, Django, Python, CSS, Javascript, jQuery, Knockout.js, and other web development topics.

Tag Archives: breadcrumbs

WordPress: How to create a breadcrumb without using any plugins

A quick post for WordPress users. Go to your functions.php file. If it doesn’t exist, then create it. wp-content/themes/theme_name/functions.php Then add this inside the functions.php file. function the_breadcrumb($post_ancestors) { if (!is_home()) { echo ‘<a href="’; echo get_option(’home’); echo ‘">’; echo … Continue reading

Posted in General | Tagged , | Leave a comment

Zend Framework: Navigation and Breadcrumbs with an XML File in ZF 1.8

This is related to the Making the Built-in Breadcrumb Helper Work I posted earlier. Thanks to Jonathan Lebensold’s screencast, I am able to create my navigation and breadcrumbs in a better way. Using an XML file makes more sense than … Continue reading

Posted in General | Tagged , , , , | 35 Comments

Zend Framework: Making the Built-in Breadcrumb Helper Work

In the latest release of Zend Framework (1.8.1 as of this writing), there is a new built-in view helper to render your breadcrumb needs. There is a section in the documentation that tells us how to use it. But I … Continue reading

Posted in General | Tagged , , , | 15 Comments