Created
June 7, 2021 11:36
-
-
Save Maxim-Kolmogorov/bd7165faf9b612ced7993b05ebdcaaeb to your computer and use it in GitHub Desktop.
Creating Wordpress plugin for article.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin name: Добавление моего JS кода | |
* Description: Я не смог придумать описание для этого плагина | |
* Version: 0.0.1 | |
* Author: Максим Колмогоров | |
* Author URI: https://vk.com/maxim_kolmogorov | |
*/ | |
add_action('admin_head', 'add_my_js_from_plugin'); | |
function add_my_js_from_plugin() | |
{ | |
echo '<script type="text/javascript">console.log("Я плагин, и я работаю!");</script>'; // выводим console.log() | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment