%PDF- %PDF-
| Direktori : /www/klubovnaostrava/www/wp-content/themes/businessx/acosmin/functions/ |
| Current File : /www/klubovnaostrava/www/wp-content/themes/businessx/acosmin/functions/post-options.php |
<?php
/* ------------------------------------------------------------------------- *
* Post meta boxes
/* ------------------------------------------------------------------------- */
/* Add a metabox to display options
/* ------------------------------------ */
if ( ! function_exists( 'businessx_add_post_options_box' ) ) {
function businessx_add_post_options_box() {
add_meta_box( 'businessx_post_options_metabox', __( 'Post Options:', 'businessx' ), 'businessx_post_options_box', 'post', 'side', 'high' );
}
}
add_action( 'admin_menu', 'businessx_add_post_options_box' );
/* Metabox output
/* ------------------------------------ */
if ( ! function_exists( 'businessx_post_options_box' ) ) {
function businessx_post_options_box() {
global $post;
// Get some info
$hide_sidebar = get_post_meta( $post->ID, 'businessx_single_hide_sidebar', true );
// Nonce
wp_nonce_field( 'businessx_post_hide_sidebar_nonce', 'businessx_post_hide_sidebar_nonce' );
do_action( 'businessx_post_options_box__action_before' );
?>
<p>
<label for="businessx_post_hide_sidebar_meta">
<input type="checkbox" class="checkbox" id="businessx_post_hide_sidebar_meta" name="businessx_post_hide_sidebar_meta" <?php checked( $hide_sidebar, 1 ); ?> />
<?php _e( 'Hide sidebar', 'businessx' ) ?> — <em><?php _e( 'You can hide it globally from the Customizer.', 'businessx' ) ?></em>
</label>
</p>
<?php
do_action( 'businessx_post_options_box__action_after' );
}
}
/* Save meta info
/* ------------------------------------ */
if ( ! function_exists( 'businessx_post_options_save' ) ) {
function businessx_post_options_save() {
global $post;
// Verify some credentials
if ( ! isset( $_POST[ 'businessx_post_hide_sidebar_nonce' ] ) ||
! wp_verify_nonce( $_POST[ 'businessx_post_hide_sidebar_nonce' ], 'businessx_post_hide_sidebar_nonce' ) )
return;
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
return;
if ( ! current_user_can( 'edit_post', $post->ID ) )
return;
// Check defaults
$hide_sidebar = ! empty( $_POST[ 'businessx_post_hide_sidebar_meta' ] ) ? 1 : 0;
// Update meta info
update_post_meta( $post->ID, 'businessx_single_hide_sidebar', absint( $hide_sidebar ) );
do_action( 'businessx_post_options_save__action' );
}
}
add_action( 'save_post', 'businessx_post_options_save' );