X7ROOT File Manager
Current Path:
/home/magneti1/public_html/wp-content/plugins/team-member-block/includes
home
/
magneti1
/
public_html
/
wp-content
/
plugins
/
team-member-block
/
includes
/
ðŸ“
..
📄
helpers.php
(3.1 KB)
📄
post-meta.php
(795 B)
Editing: post-meta.php
<?php // Exit if accessed directly. if (!defined('ABSPATH')) { exit; } class Social_Post_Meta { public function __construct() { add_filter('init', array($this, 'register_meta')); } /** * Register meta */ public function register_meta() { register_meta( 'post', '_eb_attr', array( 'show_in_rest' => true, 'single' => true, 'auth_callback' => [$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'); } } new Social_Post_Meta();
Upload File
Create Folder