Skip to content

Instantly share code, notes, and snippets.

View matowens's full-sized avatar
☠️
Hustlin'

Mat matowens

☠️
Hustlin'
View GitHub Profile
@matowens
matowens / functions-remove-menus.php
Last active August 29, 2015 14:14
Remove Item From WP Admin Bar
/**
* Remove unused areas of the WP admin sidebar.
*/
function remove_menus() {
remove_menu_page('edit.php');
}
add_action('admin_menu', 'remove_menus');
@matowens
matowens / index.html
Last active September 26, 2023 17:17
Base index.html file for quick starting an app.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
<link rel="stylesheet" href="assets/styles/main.css">