HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/crowdandsafety/wordpress-backups/x/framework/legacy/functions/frontend/meta.php
<?php

// =============================================================================
// FUNCTIONS/GLOBAL/META.PHP
// -----------------------------------------------------------------------------
// Additions and alterations to site headers and <head> meta data.
// =============================================================================

// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
//   01. Filter <title> Output
//   02. Generic <head> Meta Data
// =============================================================================

// Filter <title> Output
// =============================================================================


if ( ! function_exists( 'x_title_separator' ) ) :
  function x_title_separator( $sep ) {

    $sep = "|";

    return $sep;

  }

  add_filter( 'document_title_separator', 'x_title_separator' );
endif;



// Generic <head> Meta Data
// =============================================================================

if ( ! function_exists( 'x_head_meta' ) ) :
  function x_head_meta() {

    x_get_view( 'global', '_meta' );

  }
  add_action( 'wp_head', 'x_head_meta', 0 );
endif;