BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
CTR
/
wp-content
/
plugins
/
coblocks
/
includes
📤 Upload
📝 New File
📁 New Folder
Close
Editing: class-coblocks-post-meta.php
<?php /** * Register post meta. * * @package CoBlocks */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * CoBlocks_Post_Meta Class * * @since 1.6.0 */ class CoBlocks_Post_Meta { /** * Constructor */ public function __construct() { add_filter( 'init', array( $this, 'register_meta' ) ); } /** * Register meta. */ public function register_meta() { register_meta( 'post', '_coblocks_attr', array( 'show_in_rest' => true, 'single' => true, 'auth_callback' => array( $this, 'auth_callback' ), ) ); register_meta( 'post', '_coblocks_dimensions', array( 'show_in_rest' => true, 'single' => true, 'auth_callback' => array( $this, 'auth_callback' ), ) ); register_meta( 'post', '_coblocks_responsive_height', array( 'show_in_rest' => true, 'single' => true, 'auth_callback' => array( $this, 'auth_callback' ), ) ); register_meta( 'post', '_coblocks_accordion_ie_support', array( 'show_in_rest' => true, 'single' => true, 'auth_callback' => array( $this, 'auth_callback' ), ) ); } /** * Determine if the current user can edit posts * * @return bool True when can edit posts, else false. */ public function auth_callback() { return current_user_can( 'edit_posts' ); } } return new CoBlocks_Post_Meta();
Save
Cancel