Support

Account

Home Forums Backend Issues (wp-admin) Adding field to options page Reply To: Adding field to options page

  • It’s going to look something like

    
    'location' => array (
    	array (
    		array (
    			'param' => 'options_page',
    			'operator' => '==',
    			'value' => 'options-page-slug',
    		),
    	),
    ),
    

    You can get information like this by creating a field group with the settings you’d like and then exporting it to PHP to see how those settings need to appear.