M-am intors pe blog. Back to online. N-am mai scris demult, a fost un an greu, am filmat in iarna la lung-metraj, apoi am plecat din tara 2 luni in SUA la o bursa, a venit TIFF-ul, montajul filmului, vacanta … Continued
// returns WordPress subdirectory if applicable function wp_base_dir() { preg_match('!(https?://[^/|"]+)([^"]+)?!', site_url(), $matches); if (count($matches) === 3) { return end($matches); } else { return ''; } } // opposite of built in WP functions for trailing slashes function leadingslashit($string) { return '/' . unleadingslashit($string); } function unleadingslashit($string) { return ltrim($string, '/'); } function add_filters($tags, $function) { foreach($tags as $tag) { add_filter($tag, $function); } } ?>
M-am intors pe blog. Back to online. N-am mai scris demult, a fost un an greu, am filmat in iarna la lung-metraj, apoi am plecat din tara 2 luni in SUA la o bursa, a venit TIFF-ul, montajul filmului, vacanta … Continued