' . do_shortcode( $footer_insert ) . ''; } /* Load the custom CSS. */ function framework_custom_css() { $custom_css = framework_get_setting( 'custom_css' ); if ( $custom_css ) : echo "\n" . ''; echo "\n" . '' . "\n"; endif; } /* Wrap all oEmbedded videos with a p tag. */ function framework_oembed_wrapper( $output, $data, $url ) { $return = '

' . $output . '

'; return $return; } /* Adds 'class="next" to the next comment link. */ function framework_next_comment_link_attributes( $attributes ) { return $attributes . ' class="next"'; } /* Adds 'class="prev" to the previous comment link. */ function framework_previous_comment_link_attributes( $attributes ) { return $attributes . ' class="prev"'; } ?>