Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
themes
/
educollege
/
inc
/
✏️
Editing: demo-import.php
<?php /** * Demo Import. * * This is the template that includes all the other files for core featured of Theme Palace * * @package Theme Palace * @subpackage Educollege * @since Educollege 1.0.0 */ function educollege_ctdi_plugin_page_setup( $default_settings ) { $default_settings['menu_title'] = esc_html__( 'Theme Palace Demo Import' , 'educollege' ); return $default_settings; } add_filter( 'cp-ctdi/plugin_page_setup', 'educollege_ctdi_plugin_page_setup' ); function educollege_ctdi_plugin_intro_text( $default_text ) { $default_text .= sprintf( '<p class="about-description">%1$s <a href="%2$s">%3$s</a></p>', esc_html__( 'Demo content files for Educollege Theme.', 'educollege' ), esc_url( 'https://themepalace.com/download/educollege' ), esc_html__( 'Click here for Demo File download', 'educollege' ) ); return $default_text; } add_filter( 'cp-ctdi/plugin_intro_text', 'educollege_ctdi_plugin_intro_text' );
💾 Save
❌ Cancel