• Resolved ntvmd

    (@ntvmd)


    Can I use the shortcode to show all the links that have a certain “keyword” in the title?

Viewing 1 replies (of 1 total)
  • Plugin Author Mat Lipe

    (@mat-lipe)

    Hi Ntvmd,

    There is no way to currently do this out-of-the-box, however with a filter this may be accomplished.

    Quick and dirty

    add_filter( 'simple_links_parsed_query_args', 'search_for_keyword' );
    		function search_for_keyword( $args ) {
    			$args['s'] = 'keyword';
    			return $args;
    		}

    Change ‘keyword’ to whatever you want to search for.

    Cheers

    Mat Lipe

Viewing 1 replies (of 1 total)
  • The topic ‘Display links with “keyword”’ is closed to new replies.