Retrieve options set through a plugin

First of all, the_content
is a filter hook and not action. Secondly, it will only work when post content will be access on your site front end. You can probably make use of global variables instead.

e.g.

$options = get_option( 'wpglobalsettings' );

and then use wherever you want to access as follows –

global $options;