Skip to content

Instantly share code, notes, and snippets.

View dcangulo's full-sized avatar
💻

David Angulo dcangulo

💻
View GitHub Profile
@dcangulo
dcangulo / submenu.php
Last active April 3, 2018 06:14
A WordPress plugin template with menu and submenu. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: My WordPress Plugin
Plugin URI: https://wordpress.org/plugins/
Description: Just another WordPress plugin.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
*/
@dcangulo
dcangulo / function.php
Last active April 3, 2018 06:15
A PHP function that abbreviates numbers. (Eg. 1000 to 1K+). Visit https://www.davidangulo.xyz/ for more information.
<?php
function abbreviateNumber($num) {
if ($num >= 0 && $num < 1000) {
$format = floor($num);
$suffix = '';
}
else if ($num >= 1000 && $num < 1000000) {
$format = floor($num / 1000);
$suffix = 'K+';
}
@dcangulo
dcangulo / admin.php
Last active April 3, 2018 06:16
A WordPress plugin template that has an admin menu. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: My WordPress Plugin
Plugin URI: https://wordpress.org/plugins/
Description: Just another WordPress plugin.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
*/
@dcangulo
dcangulo / upload.php
Last active April 3, 2018 06:17
A simple WordPress plugin that allows you to upload files programatically. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: Upload Files Programatically
Plugin URI: https://wordpress.org/plugins/
Description: Just another file uploader plugin.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
*/
@dcangulo
dcangulo / index-oop.php
Last active April 3, 2018 06:20
A WordPress plugin shortcode template on both oop and procedural approach. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: Example Shortcode Plugin
Plugin URI: https://wordpress.org/plugins/
Description: Just another example shortcode plugin.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
*/
@dcangulo
dcangulo / cron.php
Created April 3, 2018 07:51
A simple WordPress plugin that has a cron schedule. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: My cron WordPress plugin
Plugin URI: wordpress.org/plugins
Description: A simple WordPress plugin that executes many times in a certain interval.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
License: GPL2
*/
@dcangulo
dcangulo / settings.php
Created April 3, 2018 14:05
A WordPress plugin settings page template. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: Wordpress plugin with settings
Plugin URI: wordpress.org/plugins
Description: Just another WordPress plugin with settings page.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
License: GPL2
*/
@dcangulo
dcangulo / dashboard-widget.php
Created April 4, 2018 04:38
A dashboard widget code in WordPress. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: Dashboard Widget Example
Plugin URI: https://www.davidangulo.xyz/portfolio/
Description: Just another WordPress plugin with dashboard widget.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
License: GPL2
*/
@dcangulo
dcangulo / column.php
Created April 4, 2018 13:22
A simple WordPress plugin that shows the last modified date of a post. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: Custom Column Plugin Example
Plugin URI: https://www.davidangulo.xyz/portfolio/
Description: Add a custom column on WordPress posts.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
License: GPL2
*/
@dcangulo
dcangulo / databasetable.php
Created April 5, 2018 07:02
A simple WordPress plugin the creates custom table on plugin activation. Visit https://www.davidangulo.xyz/ for more information.
<?php
/*
Plugin Name: Create database table
Plugin URI: https://www.davidangulo.xyz/portfolio/
Description: A simple WordPress plugin that creates a database table on activation.
Version: 1.0.0
Author: David Angulo
Author URI: https://www.davidangulo.xyz/
License: GPL2
*/