Sorry for not leaving a link and for taking so long to say thank you.
My next problem is that I didn’t set this to happen. There is a setting within my Wordpress SEO for Twitter Cards. Previously, I hard coded it in and it worked; however, I had a tough time doing it this time around. Then I saw the setting and took the easy way out. Is there a way to reverse this?
I’m guessing this is the coding that is associated with the Twitter Card feature on WP SEO. I’m just not sure what to do with it? :
/
function wpseo_frontend_init() {
$options = get_wpseo_options();
require WPSEO_PATH . ‘frontend/class-frontend.php’;
if ( isset( $options[‘breadcrumbs-enable’] ) && $options[‘breadcrumbs-enable’] )
require WPSEO_PATH . ‘frontend/class-breadcrumbs.php’;
if ( isset( $options[‘twitter’] ) && $options[‘twitter’] )
require WPSEO_PATH . ‘frontend/class-twitter.php’;
if ( isset( $options[‘opengraph’] ) && $options[‘opengraph’] )
require WPSEO_PATH . ‘frontend/class-opengraph.php’;
}