how to disable autocomplete search on wpLink?
OP linked it in a comment above, but here’s the code used. Note This doesn’t actually disable autocomplete, it simply removes all of the results before they’re displayed (and I added some CSS to hide the loading icon). They’re still fetched by WP, just overridden with an empty array. add_filter( ‘wp_link_query’, ‘remove_results_from_link_builder_autocomplete’, 10, 2 ); … Read more