'; echo '
'; echo ''; } } endif; /* * Add boostrap classes fot tables */ add_filter( 'the_content', 'barletta_add_custom_table_class' ); function barletta_add_custom_table_class( $content ) { return str_replace( '', '
', $content ); } /** * Password protected post form using Boostrap classes */ add_filter( 'the_password_form', 'barletta_custom_password_form' ); function barletta_custom_password_form() { global $post; $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID ); $o = '
' . esc_html__( "This post is password protected. To view it please enter your password below:" ,'barletta') . '
'; return $o; }