Skip to content

Instantly share code, notes, and snippets.

View pmqa's full-sized avatar
🏠
Working from home

Pedro Almeida pmqa

🏠
Working from home
View GitHub Profile
@devinsays
devinsays / example-ajax-enqueue.php
Last active October 4, 2023 13:09
Simple WordPress Ajax Example
<?php
function example_ajax_enqueue() {
// Enqueue javascript on the frontend.
wp_enqueue_script(
'example-ajax-script',
get_template_directory_uri() . '/js/simple-ajax-example.js',
array( 'jquery' )
);