Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created October 9, 2014 14:56
Show Gist options
  • Save igmoweb/039d8efae91970f969d5 to your computer and use it in GitHub Desktop.
Save igmoweb/039d8efae91970f969d5 to your computer and use it in GitHub Desktop.
<?php
add_action( 'wp_ajax_fictizia_load_posts', 'fictizia_load_posts' );
add_action( 'wp_ajax_nopriv_fictizia_load_posts', 'fictizia_load_posts' );
function fictizia_load_posts() {
$posts = // SELECCIONAMOS LOS POSTS
wp_send_json( $posts );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment