*/ class BoxWP_Customize_Recommended_Plugins extends WP_Customize_Control { public $type = 'tdna-recommended-wpplugins'; public function render_content() { $plugins = array( 'wp-pagenavi' => array( 'link' => esc_url( admin_url('plugin-install.php?tab=plugin-information&plugin=wp-pagenavi' ) ), 'text' => esc_html__( 'WP-PageNavi', 'boxwp' ), 'desc' => esc_html__( 'WP-PageNavi plugin helps to display numbered page navigation of this theme. Just install and activate the plugin.', 'boxwp' ), ), 'regenerate-thumbnails' => array( 'link' => esc_url( admin_url('plugin-install.php?tab=plugin-information&plugin=regenerate-thumbnails' ) ), 'text' => esc_html__( 'Regenerate Thumbnails', 'boxwp' ), 'desc' => esc_html__( 'Regenerate Thumbnails plugin helps you to regenerate your thumbnails to match with this theme. Install and activate the plugin. From the left hand navigation menu, click Tools > Regen. Thumbnails. On the next screen, click Regenerate All Thumbnails.', 'boxwp' ), ), ); foreach ( $plugins as $plugin) { echo wp_kses_post( force_balance_tags( '

'.$plugin['desc'].'

' ) ); echo wp_kses_post( force_balance_tags( '

' . esc_attr($plugin['text']) .'

' ) ); } } }