/**
  * Breaks block quotes out of the content they're in. We want blockquotes to be full width
  *
  * @param string $content Current content of the page.
  *
  * @return string
  */
 public function blockquote_full_width($content)
 {
     $shortcode = new Shortcodes();
     $content = str_replace('<blockquote>', $shortcode->get_break_out_body() . '<blockquote>', $content);
     $content = str_replace('</blockquote>', '</blockquote>' . $shortcode->get_restart_body(), $content);
     return $content;
 }