Skip to content

Instantly share code, notes, and snippets.

@fredrikwoll
fredrikwoll / snipet.php
Last active August 29, 2015 14:27 — forked from qutek/snipet.php
Add Custom Media Upload Worpress
/*************************
* Enqueue Media Uploader
*************************/
function enqueue_admin_scripts() {
if(function_exists('wp_enqueue_media')) {
wp_enqueue_media();
}
else {
wp_enqueue_script('media-upload');
wp_enqueue_script('thickbox');
@fredrikwoll
fredrikwoll / aux-functions.php
Last active February 18, 2020 11:04 — forked from eduwass/duplicate-post.php
Programmatically duplicating a WordPress post
<?php
/**
* Duplicates a post & its meta and it returns the new duplicated Post ID
* @param [int] $post_id The Post you want to clone
* @return [int] The duplicated Post ID
*/
function duplicate($post_id) {
$title = get_the_title($post_id);
$oldpost = get_post($post_id);