Also, when I register a new ajax call function in the functions.php file, how will it 'know' to make the call via this front-end ajax file instead of the admin-ajax.php file?
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.
7 Responses
The current setup assumes this file is placed in theme root I believe.
Also, when I register a new ajax call function in the functions.php file, how will it 'know' to make the call via this front-end ajax file instead of the admin-ajax.php file?
Example:
add_action('wp_ajax_my_ajax_function_name', 'my_ajax_function_name');
add_action('wp_ajax_nopriv_my_ajax_function_name', 'my_ajax_function_name');
I appreciate your help :)
Best,
Best,
Write a comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.