Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Change Breadcrumb NavXT trail to match Permalink Manager custom permalink structure.
- *
- * @param array $trail
- *
- * @return array
- */
- function pm_breadcrumbs_navxt_trail( $trail ) {
- if ( property_exists( $trail, 'breadcrumbs' ) ) {
- $new_breadcrumbs = apply_filters( 'wpseo_breadcrumb_links', $trail->breadcrumbs );
- if ( count( $trail->breadcrumbs ) > 2 ) {
- foreach ( $new_breadcrumbs as $i => &$breadcrumb ) {
- // Ignore first and last breadcrumb
- if ( ! is_array( $breadcrumb ) || empty( $breadcrumb['text'] ) ) {
- continue;
- }
- $breadcrumb = new bcn_breadcrumb( $breadcrumb['text'], null, array( '' ), $breadcrumb['url'], null, true );
- }
- }
- }
- }
- add_action( 'bcn_after_fill', 'pm_breadcrumbs_navxt_trail' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement