| Server IP : 43.130.17.34 / Your IP : 216.73.217.6 Web Server : nginx/1.28.0 System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/yespkg.com/wp-content/plugins/wpforms/pro/templates/fields/ |
Upload File : |
<?php
/**
* Template of the iframe document displaying Rich Text field value on the Entry View page.
*
* @since 1.7.0
*
* @var string $content Content HTML.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$suffix = SCRIPT_DEBUG ? '' : '.min';
$version = 'ver=' . get_bloginfo( 'version' );
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php echo esc_attr( get_option( 'blog_charset' ) ); ?>" />
<title><?php echo esc_html__( 'View Entry > Rich Text field', 'wpforms' ); ?></title>
<?php // phpcs:disable WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet ?>
<link rel="stylesheet" href="<?php echo esc_url( includes_url( "js/tinymce/skins/lightgray/content.min.css?{$version}" ) ); ?>">
<link rel="stylesheet" href="<?php echo esc_url( includes_url( "css/dashicons{$suffix}.css?{$version}" ) ); ?>">
<link rel="stylesheet" href="<?php echo esc_url( includes_url( "js/tinymce/skins/wordpress/wp-content.css?{$version}" ) ); ?>">
<?php // phpcs:enable WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet ?>
<style>
body {
margin: 8px 12px !important;
}
pre {
white-space: pre !important;
overflow-x: auto !important;
}
li {
list-style-position: inside;
}
p img {
display: block;
}
.aligncenter,
.alignnone {
clear: both;
/* Make the same margins as alingleft/alignright. */
margin-top: 0.5em;
margin-bottom: 0.5em;
}
</style>
</head>
<body class="mce-content-body">
<?php echo wpforms_esc_richtext_field( $content ); ?>
</body>
</html>