Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

25 linhas
777 B

  1. /* global setPostThumbnailL10n, ajaxurl, post_id, alert */
  2. /* exported WPSetAsThumbnail */
  3. function WPSetAsThumbnail( id, nonce ) {
  4. var $link = jQuery('a#wp-post-thumbnail-' + id);
  5. $link.text( setPostThumbnailL10n.saving );
  6. jQuery.post(ajaxurl, {
  7. action: 'set-post-thumbnail', post_id: post_id, thumbnail_id: id, _ajax_nonce: nonce, cookie: encodeURIComponent( document.cookie )
  8. }, function(str){
  9. var win = window.dialogArguments || opener || parent || top;
  10. $link.text( setPostThumbnailL10n.setThumbnail );
  11. if ( str == '0' ) {
  12. alert( setPostThumbnailL10n.error );
  13. } else {
  14. jQuery('a.wp-post-thumbnail').show();
  15. $link.text( setPostThumbnailL10n.done );
  16. $link.fadeOut( 2000 );
  17. win.WPSetThumbnailID(id);
  18. win.WPSetThumbnailHTML(str);
  19. }
  20. }
  21. );
  22. }