Colors > Blog / Archive * * @package Aryx */ /* * Blog / Archive Section Fields * */ /* Entry Header Sequence */ Kirki::add_field( 'aryx_config_kirki', [ 'type' => 'sortable', 'settings' => 'aryx_f_archive_entry_header_s_blog_archive_p_blog', 'label' => esc_html__( 'Post Structure', 'aryx' ), 'section' => 'aryx_s_blog_archive_p_blog', 'default' => [ 'post-thumbnail', 'entry-title', 'entry-meta', ], 'choices' => [ 'post-thumbnail' => esc_html__( 'Featured Image', 'aryx' ), 'entry-title' => esc_html__( 'Post Title', 'aryx' ), 'entry-meta' => esc_html__( 'Post Meta', 'aryx' ), ], 'priority' => 10, ] ); /* Entry Meta Sequence */ Kirki::add_field( 'aryx_config_kirki', [ 'type' => 'sortable', 'settings' => 'aryx_f_archive_entry_meta_s_blog_archive_p_blog', 'label' => esc_html__( 'Meta Structure', 'aryx' ), 'section' => 'aryx_s_blog_archive_p_blog', 'default' => [ 'published', 'categories', 'author', ], 'choices' => [ 'published' => esc_html__( 'Publish Date', 'aryx' ), 'modified' => esc_html__( 'Last Modified Date', 'aryx' ), 'categories' => esc_html__( 'Category', 'aryx' ), 'tags' => esc_html__( 'Tags', 'aryx' ), 'author' => esc_html__( 'Author', 'aryx' ), 'comment_count' => esc_html__( 'Comment Count', 'aryx' ) ], 'priority' => 20, ] ); /* Content Length */ Kirki::add_field( 'aryx_config_kirki', [ 'type' => 'select', 'settings' => 'aryx_f_archive_content_length_s_blog_archive_p_blog', 'label' => esc_html__( 'Content Length', 'aryx' ), 'section' => 'aryx_s_blog_archive_p_blog', 'default' => 'excerpt', 'priority' => 30, 'multiple' => 1, 'choices' => [ 'excerpt' => esc_html__( 'Excerpt', 'aryx' ), 'full-content' => esc_html__( 'Full Content', 'aryx' ), ], ] );