Welcome to Praful Bhuskute BlackSpy Praful Bhuskute BlackSpy Praful Bhuskute BlackSpy Praful Bhuskute BlackSpy

now active child theme in wordpress
WordPress

Create Child Themes in WordPress

Benefits of the child theme

It allows you to make your modifications portable and replicable of the parent theme
Keep customization separate from parent theme functions;
Allow parent themes to be updated without destroying your modifications;

Read More »
Custom Admin Page in WordPress
WordPress

Custom Admin Page in WordPress

function my_admin_menu() { add_menu_page( __( ‘Sample page’, ‘my-textdomain’ ), __( ‘Sample menu’, ‘my-textdomain’ ), ‘manage_options’, ‘sample-page’, ‘my_admin_page_contents’, ‘dashicons-schedule’, 3 ); } add_action( ‘admin_menu’, ‘my_admin_menu’ );

Read More »