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