$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>php - How to return output of the new wp gallery block for automatically Link images To Media file|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - How to return output of the new wp gallery block for automatically Link images To Media file

matteradmin8PV0评论

Sorry for the repeated questions but I didn't get any solution yet!

I'm stuck with that!!

I mange a multi writers blog, and all our users uploading some gallery images, and they didn't know the difference between (attachment, media file or none). I found solution to hide the linking panel, but I am editing all the published posts to change the gallery images link to file "manually". :(

Before WordPress version 5 I was linked all gallery images to "file" automatically by using this filter below.

add_filter( 'shortcode_atts_gallery',
    function( $out ){
        $out['link'] = 'file'; 
        return $out;
    }
);

But after WP 5+ how can I make it to work again? I really need to link all gallery images to "media file" automatically!

I hope someone will help me or even giving me the right way.

Thanks for your time.

Post a comment

comment list (0)

  1. No comments so far