upload_space_setting [ WordPress Function ]
upload_space_setting ( $id )
| Defined at: |
|
Benzer Fonksiyonlar: wp_plupload_default_settings, wp_user_settings, wp_load_core_site_options, display_space_usage, upload_is_file_too_big
No description yet.
Source
<?php
function upload_space_setting( $id ) {
$quota = get_blog_option( $id, 'blog_upload_space' );
if ( !$quota )
$quota = '';
?>
<tr>
<th><?php _e( 'Site Upload Space Quota '); ?></th>
<td><input type="number" step="1" min="0" style="width: 100px" name="option[blog_upload_space]" value="<?php echo $quota; ?>" /> <?php _e( 'MB (Leave blank for network default)' ); ?></td>
</tr>
<?php
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/upload space setting « WordPress Codex
Function Reference/upload space setting. Source File. upload_space_setting() is located in wp-admin/includes/ms.php . See also index of Function Reference ...
codex.wordpress.org - Ticket #15593 - WordPress Trac
Keywords needs-patch added; Severity changed from normal to major. Because wpmueditblogaction is missing the blog upload space setting can't be set, see ...
core.trac.wordpress.org - PHPXRef 0.7 : WordPress : /wp-admin/includes/ms.php source
strong> 370 <?php 371 } 372 373 // Edit blog upload space setting on Edit Blog page 374 function upload_space_setting( $id ) { 375 $quota = get_blog_option( ...
phpxref.ftwr.co.uk - /wp-admin/includes/ms.php source - PHP Cross Reference ...
Jun 1, 2011 ... strong> 420 <?php 421 } 422 423 // Edit blog upload space setting on Edit Blog page 424 function upload_space_setting( $id ) { 425 $quota ...
xref.yoast.com