Title: Breadcrumbs with PHP Code
Last modified: August 21, 2016

---

# Breadcrumbs with PHP Code

 *  Resolved [webmastermama](https://wordpress.org/support/users/webmastermama/)
 * (@webmastermama)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/breadcrumbs-with-php-code/)
 * I am using the PHP code to display my slideshow. However, it still shows the 
   breadcrumbs above it even though they are set to ‘off’.
 * [http://www.beckytalk.com/testwp/](http://www.beckytalk.com/testwp/)
 * You can view it there. Is there a piece of code I need to use to get rid of that
   with PHP??
 * Thank you!
 * [http://wordpress.org/plugins/wp-photo-album-plus/](http://wordpress.org/plugins/wp-photo-album-plus/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/breadcrumbs-with-php-code/#post-4237587)
 * The wppa display is apparently not on either a post or a page. I did not recognize
   that this was possible, i will fix it in the next version.
    This case will then
   be treated as a ‘page’ case, so it will be dependant of setting Table II-A1b.
 * If you can’t wait until 5.1.12 you can patch it as follows:
 * edit wppa-breadcrumb.php line 24:
 *     ```
       if ( $type == 'page' && ! $wppa_opt['wppa_show_bread_pages'] ) return;	// Nothing to do here
       ```
   
 * change to:
 *     ```
       if ( $type != 'post' && ! $wppa_opt['wppa_show_bread_pages'] ) return;	// Nothing to do here
       ```
   
 *  Thread Starter [webmastermama](https://wordpress.org/support/users/webmastermama/)
 * (@webmastermama)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/breadcrumbs-with-php-code/#post-4237690)
 * THANK YOU SO MUCH!
 *  Thread Starter [webmastermama](https://wordpress.org/support/users/webmastermama/)
 * (@webmastermama)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/breadcrumbs-with-php-code/#post-4237689)
 * THANK YOU SO MUCH!
 *  Thread Starter [webmastermama](https://wordpress.org/support/users/webmastermama/)
 * (@webmastermama)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/breadcrumbs-with-php-code/#post-4237691)
 * Sorry – my fingers hit a bunch of keys accidentally.
 * This worked and that makes me happy. I appreciate your quick response and a response
   that worked. Once I get home I’ll get the donation sent
    because anyone who response
   quickly deserves that.
 * I’m using a theme where the front-page content is created through the
    appearance
   area. It has a form to fill out so I had to go in and edit the page directly 
   to include the slideshow.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Breadcrumbs with PHP Code’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-photo-album-plus.svg)
 * [WP Photo Album Plus](https://wordpress.org/plugins/wp-photo-album-plus/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-photo-album-plus/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-photo-album-plus/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-photo-album-plus/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-photo-album-plus/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-photo-album-plus/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [webmastermama](https://wordpress.org/support/users/webmastermama/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/breadcrumbs-with-php-code/#post-4237691)
 * Status: resolved