Files
ultimatemember/templates/login-to-view.php
T

22 lines
434 B
PHP
Raw Normal View History

2023-04-11 09:13:36 +03:00
<?php
/**
2023-04-11 16:25:25 +03:00
* Template for the login only content, locked message
*
* This template can be overridden by copying it to yourtheme/ultimate-member/login-to-view.php
*
* Call: function um_loggedin()
*
2023-04-17 17:24:42 +03:00
* @version 2.6.1
2023-04-11 16:25:25 +03:00
*
* @var string $lock_text
2023-04-11 09:13:36 +03:00
*/
2023-04-11 16:25:25 +03:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
} ?>
2019-07-17 16:55:09 +03:00
<div class="um-locked-content">
2019-08-14 11:26:42 +03:00
<div class="um-locked-content-msg"><?php echo htmlspecialchars_decode( $lock_text ); ?></div>
2023-04-11 09:13:36 +03:00
</div>