📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-07-02 02:15:02
📂
/ (Root)
/
home
/
apkbfjox
/
pakrummygame.com.pk
/
wp-content
/
plugins
/
kadence-pro
/
dist
/
advanced-pages
/
templates
📍 /home/apkbfjox/pakrummygame.com.pk/wp-content/plugins/kadence-pro/dist/advanced-pages/templates
🔄 Refresh
✏️
Editing: kadence-adv-page-single.php
Writable
<?php $background = get_post_meta( $post->ID, '_kad_adv_page_background', true ) ?? ''; global $post; $_content = $post->post_content; ?> <!DOCTYPE html> <html <?php language_attributes(); ?> class="ktap-html" itemtype="https://schema.org/WebPage"> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"> <?php wp_head(); ?> <?php if ( $background ) : ?> <style> body { --ktap-page-background-color: <?php echo esc_attr( $background ); ?>; } </style> <?php endif; ?> </head> <body class="ktap-body"> <main id="main" class="site-main" role="main"> <div class="ktap-content-wrap"> <?php // the_content() $_content = apply_filters( 'the_content', $_content ); $_content = str_replace( ']]>', ']]>', $_content ); echo $_content; ?> </div> </main> <?php wp_footer(); ?> </body> </html>
💾 Save Changes
❌ Cancel