Blog

Categories are meant for broad grouping of your posts. Think of these as general topics or the table of contents…

1 |
add_menu_page ( string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = '', string $icon_url = '', int $position = null ) |
This function takes a capability which will be used to determine whether or not a page is included in…
1 |
add_menu_page ( string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = '', string $icon_url = '', int $position = null ) |

1 |
add_action ( string $tag, callable $function_to_add, int $priority = 10, int $accepted_args = 1 ); |
Parameters: add_action accept 4 parameter. string $tag (Required) callable $function (Required) int $priority (Optional) int $accepted_args (Optional) $tag :-> The name of the action…

Hooks are provided by WordPress to allow your plugin to ‘hook into’ the rest of WordPress; that is, to call…

Plugin Name First If you’re planning on making a plugin that doesn’t exist yet you will need to first determine…

If you will want to add your own styling or JavaScript functionality. This can be done by enqueueing the asset…

A content management system (CMS) is a computer application that allows publishing, editing and modifying content, organizing, deleting as well…