Tagged Questions
0
votes
1answer
25 views
wpautop on section
I removed automatic formatting in my WP site by adding this to functions.php:
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
Now I need to add it back into ...
2
votes
2answers
41 views
What is wrong with this code I have to make a blockquote shortcode
I have a shortcode for a blockquote [blockquote]this is the quote[/blockquote] ... this is the code.
function shortcode_shortcodetest( $atts, $content = null ) {
$return = '<div ...
0
votes
1answer
293 views
Formatting <code>?
I have serious trouble displaying code blocks in my theme.
I want to display something like:
<something>
<something-else>
Content
</something-else>
...