Submit
Path:
~
/
home
/
getwphos
/
public_html
/
brueggemann
/
wp-content
/
plugins
/
insert-headers-and-footers
/
includes
/
File Content:
global-output.php
<?php /** * Add hooks to output global scripts. * * @package WPCode */ if ( ! defined( 'ABSPATH' ) ) { exit; } add_action( 'wp_head', 'wpcode_global_frontend_header' ); add_action( 'wp_footer', 'wpcode_global_frontend_footer' ); add_action( 'wp_body_open', 'wpcode_global_frontend_body', 1 ); /** * Output the frontend head scripts. * * @return void */ function wpcode_global_frontend_header() { // Filter to prevent specific header output. if ( apply_filters( 'disable_ihaf_header', false ) ) { return; } wpcode_global_script_output( 'ihaf_insert_header' ); } /** * Output the frontend footer scripts. * * @return void */ function wpcode_global_frontend_footer() { // Filter to prevent specific footer output. if ( apply_filters( 'disable_ihaf_footer', false ) ) { return; } wpcode_global_script_output( 'ihaf_insert_footer' ); } /** * Output the frontend body scripts. * * @return void */ function wpcode_global_frontend_body() { // Filter to prevent specific body output. if ( apply_filters( 'disable_ihaf_body', false ) ) { return; } wpcode_global_script_output( 'ihaf_insert_body' ); } /** * Output everything through this function to get a chance to apply some checks. * * @param string $option_name The option name to grab data from. * * @return void */ function wpcode_global_script_output( $option_name ) { // Ignore admin, feed, robots or trackbacks. if ( is_admin() || is_feed() || is_robots() || is_trackback() ) { return; } // Filter to prevent any output. if ( apply_filters( 'disable_ihaf', false ) ) { return; } $code = get_option( $option_name ); if ( empty( $code ) || empty( trim( $code ) ) ) { return; } echo wp_unslash( $code ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped }
Submit
FILE
FOLDER
Name
Size
Permission
Action
admin
---
0755
auto-insert
---
0755
conditional-logic
---
0755
execute
---
0755
generator
---
0755
lite
---
0755
capabilities.php
2809 bytes
0644
class-wpcode-abilities-api.php
16146 bytes
0644
class-wpcode-admin-bar-info.php
13947 bytes
0644
class-wpcode-auto-insert.php
3779 bytes
0644
class-wpcode-capabilities.php
1135 bytes
0644
class-wpcode-conditional-logic.php
5407 bytes
0644
class-wpcode-error.php
7730 bytes
0644
class-wpcode-file-cache.php
6536 bytes
0644
class-wpcode-file-logger.php
8743 bytes
0644
class-wpcode-generator.php
6805 bytes
0644
class-wpcode-install.php
8171 bytes
0644
class-wpcode-library-auth.php
7086 bytes
0644
class-wpcode-library.php
23467 bytes
0644
class-wpcode-settings.php
3501 bytes
0644
class-wpcode-smart-tags.php
20065 bytes
0644
class-wpcode-snippet-cache.php
4225 bytes
0644
class-wpcode-snippet-execute.php
20950 bytes
0644
class-wpcode-snippet.php
28536 bytes
0644
compat.php
4468 bytes
0644
global-output.php
1783 bytes
0644
helpers.php
14046 bytes
0644
icons.php
35489 bytes
0644
ihaf.php
204 bytes
0644
legacy.php
923 bytes
0644
pluggable.php
656 bytes
0644
post-type.php
3358 bytes
0644
safe-mode.php
4508 bytes
0644
shortcode.php
2436 bytes
0644
N4ST4R_ID | Naxtarrr