Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save divienginesupport/bcb7e6b2607dc3795f87baa1fc9dad80 to your computer and use it in GitHub Desktop.
Save divienginesupport/bcb7e6b2607dc3795f87baa1fc9dad80 to your computer and use it in GitHub Desktop.
Divi Machine - Search posts - Results page with custom title
<script>
jQuery( document ).ready(function() {
let search_title=jQuery("#search-title");
let search_term=jQuery("#search-term");
search_term = search_term.text().match(/"(.*?)"/)[1];
let search_title_text = search_title.text();
console.log(search_title_text);
console.log(search_term);
search_title.text(`${search_title_text}: "${search_term}" `);
jQuery("#search-term").remove();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment