Created
February 19, 2016 21:33
-
-
Save luisgagocasas/2e872c4331ed7b75aeb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var items = ""; | |
$.getJSON( "http://localhost/wordpress/?page_id=246&json=1", function(data) { | |
for (var i = 0; i < data.page.comments.length; i++) { | |
items += '<p>'+data.page.comments[i].name+'</p>>'; | |
} | |
$("#lista_comentarios").html(items); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment