Kanha Help Me

How to set defer or async attributes on enqueued script tags in WordPress

  <?php add_action( ‘wp_enqueue_scripts’, function () { wp_register_script( ‘my-script’, get_stylesheet_directory_uri() . ‘/assets/js/my-script.js’ ); wp_enqueue_script( ‘my-script’ ); } ); add_filter( ‘script_loader_tag’, function ( $tag, $handle ) { if ( ‘my-script’ !== $handle ) { return $tag; } return str_replace( ‘ src’, ‘ defer src’, $tag ); // defer the script //return str_replace( ‘ src’, ‘ async …

How to set defer or async attributes on enqueued script tags in WordPress Read More »

Docker – Postgres and pgAdmin 4 : Connection refused

Pgadmin fails to connect to localhost, but psql works from outside docker. both pgadmin & Postgres are running as Containers Although you haven’t indicated if you are doing so, ideally both containers could be part of a custom bridge network for automatic DNS resolution. If not added explicitly they will be part of the default bridge network. …

Docker – Postgres and pgAdmin 4 : Connection refused Read More »