Styling of Custom Plugin in wordpress -


i have made simple contact form plugin manually , want style without inline styling. made css file style.css styling doesn't worked me. in advance help.

if trying style backend (admin side) can use wp_enqueue_style . check below code . add code in plugin page.

define('plugin_url', plugins_url('', __file__ ) . '/');  add_action( 'admin_enqueue_scripts','my_plgin_style' );  function my_plgin_style(){ wp_enqueue_style('pluginstyle', plugin_url .'style.css'); } 

Comments

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - .htaccess mod_rewrite for dynamic url which has domain names -

Website Login Issue developed in magento -