2013-08-18, 17:22:32
You could use I18N Custom Fields to add an image field to pages (users will be able to select uploaded images)
Then use something like this in the sidebar:
Then use something like this in the sidebar:
Code:
<?php if (return_custom_field('image')) { ?>
<img src="<?php get_custom_field('image'); ?>" />
<?php } ?>