Skip to:
Content
Pages
Categories
Search
Top
Bottom

Hey, New to Plugin & Few questions please

  • 1. So i got Yoast breadcrumbs, but i wanna exclude it from all buddypress links including album+ , how would I do that efficiently?

    Here is the PHP code:
    if ( is_home() or is_page_template(‘forum.php’)) {} else {
    if ( function_exists(‘yoast_breadcrumb’) ) { yoast_breadcrumb(‘

    ‘); }
    }

    2. Is there an easy way to have a page listing all albums of people, preferable sortable by custom fields like Date modified etc? Or is this a feature to come?

Viewing 2 replies - 1 through 2 (of 2 total)
  • oh and the plugin im talking about is album+

    Well solved #1 by doing this
    <?php
    if ( in_category( array( 11,9,13,12,10,1 ) ) and !is_home() ) {
    if ( function_exists(‘yoast_breadcrumb’) ) { yoast_breadcrumb(‘

    ‘); }
    }
    ?>

    Anyone know my question 2?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hey, New to Plugin & Few questions please’ is closed to new replies.
Skip to toolbar