Using the following code in Wordpress returns the error 500 Internal Server Error. What could be the reason?
add_action('wp_ajax_hello', 'say_hello'); function say_hello() { echo 'Привет пользователь!' } Using the following code in Wordpress returns the error 500 Internal Server Error. What could be the reason?
add_action('wp_ajax_hello', 'say_hello'); function say_hello() { echo 'Привет пользователь!' } Source: https://ru.stackoverflow.com/questions/788026/
All Articles