Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: customize_changeset_branching

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
790            * they are the default. For WordPress sites that have heavy site management in the Customizer
791            * by multiple users then branching changesets should be enabled by means of this filter.
792            *
793            * @since 4.9.0
794            *
795            * @param bool                 $allow_branching Whether branching is allowed. If `false`, the default,
796            *                                              then only one saved changeset exists at a time.
797            * @param WP_Customize_Manager $wp_customize    Manager instance.
798            */
799           $this->branching = apply_filters( 'customize_changeset_branching', $this->branching, $this );
800
801           return $this->branching;
802      }
803
804      /**
805       * Get the changeset UUID.
806       *
807       * @since 4.7.0
808       *