mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
17 lines
399 B
Text
17 lines
399 B
Text
add_action('wp_footer', 'wt_cli_add_href_to_links');
|
|
function wt_cli_add_href_to_links() {
|
|
if (class_exists('Cookie_Law_Info')) {
|
|
?>
|
|
<script>
|
|
jQuery(function($) {
|
|
wt_cli_links = $('#cookie-law-info-bar a, #cliSettingsPopup a');
|
|
wt_cli_links.each(function() {
|
|
if($(this).attr('href') === undefined) {
|
|
$(this).attr('href', '#');
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
<?php
|
|
}
|
|
}
|