jQuery( function( $ ) { // Editing an individual custom post if ( sscpt.screen == 'post' ) { // Change visibility label if appropriate if ( parseInt( sscpt.is_sticky ) ) $( '#post-visibility-display' ).text( sscpt.sticky_visibility_text ); // Add checkbox to visibility form $( '#post-visibility-select label[for="visibility-radio-public"]' ).next( 'br' ).after( '' + ' ' + '' + '
' + '
' ); // Browsing custom posts } else { // Add "Sticky" filter above post table if appropriate if ( parseInt( sscpt.sticky_count ) > 0 ) { var publish_li = $( '.subsubsub > .publish' ); publish_li.append( ' |' ); publish_li.after( '
  • ' + '' + sscpt.sticky_text + ' (' + sscpt.sticky_count + ')' + '' + '
  • ' ); } // Add checkbox to quickedit forms $( 'span.title:contains("' + sscpt.status_label_text + '")' ).parent().after( '' ); } } );