File "post.php"

Full Path: /home/jlklyejr/public_html/wp-content-20241030122153/plugins/goya-core/includes/metabox/post.php
File size: 2.04 KB
MIME-type: text/x-php
Charset: utf-8

<?php

add_filter( 'rwmb_meta_boxes', 'goya_post_register_meta_boxes' );

function goya_post_register_meta_boxes( $meta_boxes ) {

	$prefix = 'goya_post_';

	$meta_boxes[] = array(
		'id' => 'et-post-media',
		'title' => esc_html__('Media Content', 'goya-core' ),
		'pages' => array( 'post' ),
		'context' => 'normal',
		'priority' => 'high',
		'fields' => array(
			array(
		    'type' => 'heading',
		    'name' => esc_html__('Image Gallery', 'goya-core'),
			),
			array(
				'name'  => esc_html__('Images', 'goya-core' ),
				'desc' => esc_html__('Add images (max. 8) to show on header Gallery. Used for the Gallery post format.', 'goya-core' ),
				'id' => $prefix . 'featured_gallery',
				'type' => 'image_advanced',
				'max_file_uploads' => 8,
			),
			array(
		    'type' => 'heading',
		    'name' => esc_html__('Video', 'goya-core'),
			),
			array(
				'name' => esc_html__('Video URL', 'goya-core' ),
				'id'   => $prefix . 'featured_video',
				'desc' => esc_html__('Enter a YouTube or Vimeo URL. Used for the Video post format.', 'goya-core' ),
				'type' => 'text',
				'std'  => '',
				'size' => 40,
			)
		)
	);

	$meta_boxes[] = array(
		'id' => 'et-post-page',
		'title' => 'Page Settings',
		'pages' => array( 'post' ),
		'context' => 'normal',
		'priority' => 'high',
		'fields' => array(
			array(
				'name' => esc_html__('Main Header Color', 'goya-core' ),
				'desc' => esc_html__('Header color mode used on Transparent Header & Background Featured Image.', 'goya-core' ),
				'id'   => $prefix . 'header_style',
				'type' => 'select',
				'options'  => array(
					'dark-title'  => esc_html__('Dark Text', 'goya-core'),
					'light-title' => esc_html__('Light Text', 'goya-core'),
				),
				'std'  => 'light-title',
			),
			array(
				'name' => esc_html__('Hero Title Background', 'goya-core' ),
				'desc' => esc_html__('Used on the Hero Title layout.', 'goya-core' ),
				'id'   => $prefix . 'hero_background',
				'type' => 'color',
			),
					
		)
	);

	return $meta_boxes;

}

?>