Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. LER APENAS UM
  2.  
  3. jQuery( function( $ ) {
  4. $( '#get-another-quote-button' ).on( 'click', function ( e ) {
  5. e.preventDefault();
  6. $.ajax( {
  7. url: '/wp-json/posts?filter[orderby]=rand&filter[posts_per_page]=1',
  8. success: function ( data ) {
  9. var post = data.shift(); // The data is an array of posts. Grab the first one.
  10. $( '#quote-title' ).text( post.title );
  11. $( '#quote-content' ).html( post.content );
  12.  
  13. // If the Source is available, use it. Otherwise hide it.
  14. if ( typeof post.custom_meta !== 'undefined' && typeof post.custom_meta.Source !== 'undefined' ) {
  15. $( '#quote-source' ).html( 'Source:' + post.custom_meta.Source );
  16. } else {
  17. $( '#quote-source' ).text( '' );
  18. }
  19. },
  20. cache: false
  21. } );
  22. } );
  23. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement