• Resolved vincecusomato

    (@vincecusomato)


    I uploaded the functions file to plugins and activated the plugin with wp.
    I am not using a sidebar but rather a custom theme.
    I have inserted this function and many variations (for possible syntax errors) into the spot I want the dropdown:

    <?php if( function_exists( ‘taxonomy_dropdown_widget’ ) ) taxonomy_dropdown_widget( ‘post_counts=true’, 1 ); ?>

    It doesn’t return anything. I tested and the function does exist.

    URL: https://wxtvonline.org/episodes/
    dropdown tag list should appear at top of page next to “Search by keyword: “

    Am I doing something wrong?

    Thanks

    https://www.ads-software.com/extend/plugins/tag-dropdown-widget/

Viewing 1 replies (of 1 total)
  • Plugin Author Erick Hitter

    (@ethitter)

    Hi,

    The problem is twofold. First, my documentation was incorrect. The function taxonomy_dropdown_widget() returns its value, so to display it, you must echo the function. I’ll correct that oversight in a future release.

    Second, the function accepts an array as its first parameter, not a query string as other WordPress functions do. I should probably change that. ??

    Without the opportunity to test it, the updated code below should work for you.

    <?php if( function_exists( 'taxonomy_dropdown_widget' ) ) echo taxonomy_dropdown_widget( array( 'post_counts' => true, 1 ); ?>

    Erick

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Taxonomy Dropdown Widget] Not seeing dropdown when used outside of the sidebar’ is closed to new replies.