Skip to content

Instantly share code, notes, and snippets.

View nicolabavaro's full-sized avatar
😃

Nicola Bavaro nicolabavaro

😃
View GitHub Profile
@nicolabavaro
nicolabavaro / web.config
Created March 22, 2018 16:50
Laravel & Plesk 17
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="True" />
</security>
<defaultDocument>
<files>
<clear />
<add value="index.php" />
@nicolabavaro
nicolabavaro / gist:59e9a638b58a539aa2e477117fe0d78a
Created September 7, 2018 08:46
Wordpress: Get attachment ID from attachment url
/**
* Ottengo l'ID di un attachment attraverso il suo URL
*
* @param $url
* @return int
*/
public function get_attachment_id( $url )
{
$attachment_id = 0;
$dir = wp_upload_dir();