Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Dynamic bookmarks for current page – WordPress

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #34638
    elarellano
    Member

    I’m working on wordpress…

    and I want to show a bookmark category dinamically based on the current page name.

    How to retrieve that? I think the way is to match the slug of the bookmark category and the page name. But I’m not good at php yet.

    #88574
    elarellano
    Member

    I’ve found a way to do it using conditional tags. But I have to track manually the id’s for each bookmark category and page.

    
    wp_list_bookmarks( array ( 'category' => 43  ));

    elseif ( is_page ( 323 ) ) :
    wp_list_bookmarks( array ( 'category' => 36 ));

    else :
    wp_list_bookmarks( array ( 'category' => 2 ));

    endif;
    ?>

    I’ve searched on the wordpress.org forums and I’ve found 2 threads related. But none of those ‘snippets’ seems to work for me. And I don’t understand the syntaxis yet.

    Dynamic Bookmarks for Current Category

    Advanced Custom Bookmark Query

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Back End’ is closed to new topics and replies.