Title: CFS Options Screens
Author: Jon Christopher
Published: <strong>24. juli, 2014</strong>
Last modified: 10. februar, 2022

---

Søg plugins

Dette plugin **er ikke blevet testet med de seneste 3 større udgivelser af WordPress**.
Det vedligeholdes eller understøttes muligvis ikke længere og kan have kompatibilitetsproblemer,
når det bruges med nyere versioner af WordPress.

![](https://s.w.org/plugins/geopattern-icon/cfs-options-screens.svg)

# CFS Options Screens

 Af [Jon Christopher](https://profiles.wordpress.org/jchristopher/)

[Download](https://downloads.wordpress.org/plugin/cfs-options-screens.1.2.7.zip)

 * [Detaljer](https://da.wordpress.org/plugins/cfs-options-screens/#description)
 * [Vurderinger](https://da.wordpress.org/plugins/cfs-options-screens/#reviews)
 *  [Installation](https://da.wordpress.org/plugins/cfs-options-screens/#installation)
 * [Udvikling](https://da.wordpress.org/plugins/cfs-options-screens/#developers)

 [Support](https://wordpress.org/support/plugin/cfs-options-screens/)

## Beskrivelse

Build any number of options screens based on [Custom Field Suite](https://wordpress.org/plugins/custom-field-suite/).

#### For Example

Begin by creating Field Group(s) you want to include on your options screen. **Be
sure to set NO Placement Rules.** Once it’s created, note the post ID it uses. You
can then register any number of options screens like so:

    ```
    function my_cfs_options_screens( $screens ) {
        $screens[] = array(
            'name'            => 'options',
            'menu_title'      => __( 'Site Options' ),
            'page_title'      => __( 'Customize Site Options' ),
            'menu_position'   => 100,
            'icon'            => 'dashicons-admin-generic', // optional, dashicons-admin-generic is the default
            'field_groups'    => array( 'My Field Group' ), // Field Group name(s) of CFS Field Group to use on this page (can also be post IDs)
        );

        return $screens;
    }

    add_filter( 'cfs_options_screens', 'my_cfs_options_screens' );
    ```

#### Retrieve your options like so:

    ```
    $value = cfs_get_option( 'options_screen_name', 'cfs_field_name_from_field_group' );
    ```

You can set up multiple top level and/or children options pages by adding a `parent`
argument when registering your screen:

    ```
    function my_cfs_options_screens( $screens ) {

        // Parent
        $screens[] = array(
            'name'         => 'options',
            'field_groups' => array( 'My Parent Field Group Name' ),
        );

        // Child
        $screens[] = array(
            'name'         => 'options-nav',
            'parent'       => 'options', // name of the parent
            'field_groups' => array( 'My Child Field Group Name' ),
        );

        return $screens;
     }

     add_filter( 'cfs_options_screens', 'my_cfs_options_screens' );
    ```

You can also use CFS Options Screens to set up Field Group ‘defaults’, allowing 
a Field Group to appear both on a CFS Options Screen and a post edit screen. The
CFS Options Screen will act as the default/fallback and the post edit screen will
override those defaults.

    ```
    function my_cfs_options_screens( $screens ) {
        $screens[] = array(
            'name'            => 'options',
            'menu_title'      => __( 'Site Options' ),
            'page_title'      => __( 'Customize Site Options' ),
            'menu_position'   => 100,
            'icon'            => 'dashicons-admin-generic', // optional, dashicons-admin-generic is the default
            'field_groups'    => array(
                array(
                    'title'         => 'My CFS Field Group Name',
                    'has_overrides' => true,
                ),
            ),
        );

        return $screens;
    }

    add_filter( 'cfs_options_screens', 'my_cfs_options_screens' );
    ```

Check out the `cfs_options_screens_override_note_default` and `cfs_options_screens_override_note_override`
filters to customize the messaging for CFS Options Screens overrides.

## Installation

 1. Upload `cfs-options-screens` to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Register your options screen(s) using the code snippets from this readme

## FAQ

### How do I add a Field Group to my options screen?

You must specify the Field Group Title(s) in the `field_groups` parameter when using
the `cfs_options_screens` hook

### How do I retrieve saved options?

$value = cfs_get_option( ‘options_screen_name’, ‘field_name_from_field_group’ );

## Anmeldelser

Der er ingen anmeldelser for denne widget.

## Bidragsydere & udviklere

“CFS Options Screens” er open source-software. Følgende personer har bidraget til
dette plugin.

Bidragsydere

 *   [ Jon Christopher ](https://profiles.wordpress.org/jchristopher/)

[Oversæt “CFS Options Screens” til dit eget sprog.](https://translate.wordpress.org/projects/wp-plugins/cfs-options-screens)

### Interesseret i udvikling?

[Gennemse koden](https://plugins.trac.wordpress.org/browser/cfs-options-screens/),
tjek [SVN repository](https://plugins.svn.wordpress.org/cfs-options-screens/), eller
abonner på [udviklerloggen](https://plugins.trac.wordpress.org/log/cfs-options-screens/)
via [RSS](https://plugins.trac.wordpress.org/log/cfs-options-screens/?limit=100&mode=stop_on_copy&format=rss).

## Ændringslog

#### 1.2.7

 * Add support for using CFS Field Group title instead of ID

#### 1.2.5

 * Better handling of overrides when not viewing a single post

#### 1.2.4

 * PHP Warning cleanup

#### 1.2.3

 * Fixed an issue that would output override note if any Field Group on an Options
   Screen had one
 * Fixed an issue where multiple override notes would be output when there were 
   multiple override Field Groups

#### 1.2.1

 * PHP Warning cleanup for `cfs_get_option`

#### 1.2

 * Added support for Field Group defaults/overrides where a Field Group can appear
   both on a CFS Options Screen and a post edit screen, and ‘fall back’ to the CFS
   Options Screen where applicable

#### 1.1.2

 * Refined the arguments for the underlying CPT to hide it from the Admin menu, 
   filterable with `cfs_options_screens_post_type_args`

#### 1.1.1

 * Fixed an issue resulting in a change in WordPress 4.4 that prevented editing 
   options screens

#### 1.1

 * Added new `cfs_get_options()` function to retrieve all CFS data for an options
   screen

#### 1.0.3

 * Fixed an issue in WordPress 4.3 where customized edit screen titles were not 
   shown

#### 1.0.2

 * Only show ‘Saved’ update notice when editing an options screen

#### 1.0.1

 * Proper page title is now output when editing a screen

#### 1.0

 * Initial release

## Meta

 *  Version **1.2.7**
 *  Senest opdateret **4 år siden**
 *  Aktive installationer **400+**
 *  WordPress-version ** 3.9 eller højere **
 *  Testet op til **5.9.0**
 *  Sprog
 * [English (US)](https://wordpress.org/plugins/cfs-options-screens/)
 * Tags
 * [cfs](https://da.wordpress.org/plugins/tags/cfs/)[custom field suite](https://da.wordpress.org/plugins/tags/custom-field-suite/)
   [options](https://da.wordpress.org/plugins/tags/options/)[screen](https://da.wordpress.org/plugins/tags/screen/)
   [settings](https://da.wordpress.org/plugins/tags/settings/)
 *  [Avanceret visning](https://da.wordpress.org/plugins/cfs-options-screens/advanced/)

## Bedømmelser

 5 ud af 5 stjerner.

 *  [  2 5-stjernet anmeldelser     ](https://wordpress.org/support/plugin/cfs-options-screens/reviews/?filter=5)
 *  [  0 4-stjernet anmeldelser     ](https://wordpress.org/support/plugin/cfs-options-screens/reviews/?filter=4)
 *  [  0 3-stjernet anmeldelser     ](https://wordpress.org/support/plugin/cfs-options-screens/reviews/?filter=3)
 *  [  0 2-stjernet anmeldelser     ](https://wordpress.org/support/plugin/cfs-options-screens/reviews/?filter=2)
 *  [  0 1-stjernet anmeldelser     ](https://wordpress.org/support/plugin/cfs-options-screens/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/cfs-options-screens/reviews/#new-post)

[Se alle anmeldelser.](https://wordpress.org/support/plugin/cfs-options-screens/reviews/)

## Bidragsydere

 *   [ Jon Christopher ](https://profiles.wordpress.org/jchristopher/)

## Support

Har du noget at sige? Har du brug for hjælp?

 [Vis supportforum](https://wordpress.org/support/plugin/cfs-options-screens/)

## Donér

Vil du gerne støtte udviklingen af dette plugin?

 [ Donér til dette plugin ](http://mondaybynoon.com/donate/)