Reputation: 187
I have a plugin where I want to implement chat feature, and I want to display a chat icon in all over wordpress i.e (frontend and backend) and when clicking on that icon, it will display the options for chat. I am not sure how do I make a chat icon appear everywhere in wordpress.
Does anyone have any experience or idea?
Upvotes: 1
Views: 109
Reputation: 187
add_action( 'wp_head', 'fe_chat_app');
this solved my problem. it added the php file in the head of my wordpress theme file from which i was able to load the JS file in WordPress.
Upvotes: 1