Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: translation_file_format

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
802       * Filters the preferred file format for translation files.
803       *
804       * Can be used to disable the use of PHP files for translations.
805       *
806       * @since 6.5.0
807       *
808       * @param string $preferred_format Preferred file format. Possible values: 'php', 'mo'. Default: 'php'.
809       * @param string $domain           The text domain.
810       */
811      $preferred_format = apply_filters( 'translation_file_format', 'php', $domain );
812      if ( ! in_array( $preferred_format, array( 'php', 'mo' ), true ) ) {
813           $preferred_format = 'php';
814      }
815
816      $translation_files = array();
817
818      if ( 'mo' !== $preferred_format ) {
819           $translation_files[] = substr_replace( $mofile, ".l10n.$preferred_format", - strlen( '.mo' ) );
820      }