mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
22 lines
397 B
PHP
22 lines
397 B
PHP
<?php
|
|
|
|
/**
|
|
* Define archive fields.
|
|
*/
|
|
return array(
|
|
array(
|
|
'method' => 'checkbox',
|
|
'args' => array(
|
|
'id' => 'archive_link',
|
|
'label' => __( 'Show Archive Link', 'display-featured-image-genesis' ),
|
|
),
|
|
),
|
|
array(
|
|
'method' => 'text',
|
|
'args' => array(
|
|
'id' => 'archive_link_text',
|
|
'label' => __( 'Archive Link Text', 'display-featured-image-genesis' ),
|
|
),
|
|
),
|
|
);
|