changing option for all posts
Question
In the option table image_default_link_type
is the key for that setting. So you can change its value with filtering. Please see below example.
add_filter( 'option_image_default_link_type', function () {
return 'file';
});
With this, file
will be selected by default when you insert media attachment.
0
1 month
2023-04-26T16:44:49-05:00
2023-04-26T16:44:49-05:00 0 Answers
0 views
0
Leave an answer