WordPress converts media extention URL automatically to video player

You should consider using the Auto-embeds Disabler plugin here: https://gist.github.com/ocean90/3796628 Note that it’s actually just a single line of code, if you prefer to add that to your functions.php – but I’d suggest keeping it as a plugin so you can easily activate/deactivate that functionality. remove_filter( ‘the_content’, array( $GLOBALS[‘wp_embed’], ‘autoembed’ ), 8 ); Note that … Read more

Can I Change the Media Upload Location for each user?

the easy way is using this: // $filename should be the path to a file in the upload directory. $filename=”2016/09/1.jpg”; // The ID of the post this attachment is for. $parent_post_id = 32; // Check the type of file. We’ll use this as the ‘post_mime_type’. $filetype = wp_check_filetype( basename( $filename ), null ); // Get … Read more

What is the alternative to “ when it comes to calling Media (image) files in the ‘attachment.php’ file?

Calling the_content from within attachment.php will bring you the Attachment Description. Put the code below on your page and see what you can get from within attachment.php file: while ( have_posts() ) : the_post(); /** * @link https://codex.wordpress.org/Function_Reference/wp_get_attachment_metadata#Related */ $data = array( get_the_ID(), // Gets att ID. get_permalink(), // Gets att page link. get_the_title(), // … Read more

Protecting uploads not working

And the culprit was… my apache config. Please do not forget to edit the apache configuration in /etc/apache2/apache2.conf and add the lines <Directory /var/www/html/> AllowOverride All </Directory> I still have a question. It seems (but it may be related to the fact that the site is still in localhost) that this method does not prevent … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)