- Jan 8, 2018
- 2,277
- 450
- 83
theme5s submitted a new resource:
Auto Save Remote Images without plugin - Automatically keep the all remote picture to the local media libary when you publishing posts
Read more about this resource...
Auto Save Remote Images without plugin - Automatically keep the all remote picture to the local media libary when you publishing posts
Automatically keep the all remote picture to the local media libary when you publishing posts, and automatically set featured image
Include this code tofunctions
file of theme you use
PHP:<?php class Auto_Save_Images { function __construct() { add_filter('content_save_pre', array( $this, 'post_save_images' )); } function post_save_images($content) { if (($_POST['save'] || $_POST['publish']))...
Read more about this resource...