Is there a way to manually change the image_default_size?
And for
function mytheme_setup() {<br />
// Set default values for the upload media box<br />
update_option('image_default_align', 'center' );<br />
update_option('image_default_link_type', 'none' );<br />
update_option('image_default_size', 'large' );<br />
}<br />
add_action('after_setup_theme', 'mytheme_setup');
Which are placeholder names that you are using in there?
*backticks not working for me?
Thread Starter
aoidja
(@aoidja)
Thanks 🙂
I wanted a certain widget to appear after the main content within the body.
But I managed to do it with align. And just have the code written after the main content.
Not sure how exactly to explain but I got it!