This link has been bookmarked by 186 people . It was first bookmarked on 25 Jun 2009, by Mr. Smith.
-
05 Feb 13
-
30 Mar 12
-
21 Mar 12
-
16 Feb 12
-
20 Jan 12
-
07 Dec 11
-
23 Oct 11
-
28 Sep 11
-
11 Sep 11
-
01 Sep 11
-
09 Aug 11
-
Bruno Bichet10 incredibly cool WordPress shortcodes | CatsWhoCode.com http://j.mp/pgoLRZ
-
24 Jul 11
-
08 Jul 11
-
21 Apr 11
-
31 Mar 11
-
11 Feb 11
-
11 Dec 10
-
09 Dec 10
-
08 Dec 10
-
08 Nov 10
-
03 Nov 10
-
02 Nov 10
-
30 Oct 10
Bryan McConnaheaA good resource for shortcode example code.
-
9 – Remove WordPress automatic formatting
If you’re used to display code snippets on your blog, you know that WordPress automatic formatting can be a pain for developers. The solution is simple: Using a shortcode to remove the auto-formatting functions on certain portions of text.
function my_formatter($content) { $new_content = ''; $pattern_full = '{(\[raw\].*?\[/raw\])}is'; $pattern_contents = '{\[raw\](.*?)\[/raw\]}is'; $pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE); foreach ($pieces as $piece) { if (preg_match($pattern_contents, $piece, $matches)) { $new_content .= $matches[1]; } else { $new_content .= wptexturize(wpautop($piece)); } } return $new_content; } remove_filter('the_content', 'wpautop'); remove_filter('the_content', 'wptexturize'); add_filter('the_content', 'my_formatter', 99);Usage:
[raw]This portion of text will not be automatically formatted by WP.[/raw]
-
-
07 Oct 10
Marijus Urbonas10 incredibly cool WordPress shortcodes - CatsWhoCode.com http://bit.ly/jycUF
-
08 Jul 10
-
28 Feb 10
-
27 Jan 10
Ethan Gardnershortcodes are a very easy way to display lot of things on your blog posts by inserting a very simple code.
-
18 Jan 10
-
04 Jan 10
-
17 Dec 09
-
25 Nov 09
-
24 Oct 09
-
19 Sep 09
-
05 Sep 09
-
31 Aug 09
-
14 Aug 09
-
09 Aug 09
mihawin[shorturl name="shortcode" url="http://codex.wordpress.org/Shortcode_API"]
-
27 Jul 09
-
24 Jul 09
-
21 Jul 09
-
15 Jul 09
-
11 Jul 09
-
10 Jul 09
-
04 Jul 09
-
02 Jul 09
Ralf AppeltIntroduced in WordPress 2.5, shortcodes are a very easy way to display lot of things on your blog posts by inserting a very simple code. In this article, I’m going to show 10 incredible things shortcodes can do.
-
30 Jun 09
-
29 Jun 09
-
28 Jun 09
-
27 Jun 09
-
26 Jun 09
-
Hrvoje BlažekovićIntroduced in WordPress 2.5, shortcodes are a very easy way to display lot of things on your blog posts by inserting a very simple code. In this article, I’m going to show 10 incredible things shortcodes can do.
webdesign development webdev wordpress code hacks shortcuts shortcodes
-
VOLKAN YILMAZIntroduced in WordPress 2.5, shortcodes are a very easy way to display lot of things on your blog posts by inserting a very simple code. In this article, I’m going to show 10 incredible things shortcodes can do.
blog webdesign wordpress blogging list internet development tutorials php wp affiliate webdevelopment tips tutorial scripts resources webdev code hacks coding shortcuts links snippets 10 shortcodes shortcode catswhocode.com important delicious
-
Mark SmithersIntroduced in WordPress 2.5, shortcodes are a very easy way to display lot of things on your blog posts by inserting a very simple code. In this article, I’m going to show 10 incredible things shortcodes can do.
-
25 Jun 09
-
Rick ScheibnerSome interesting ways to tweak Wordpress, especially for a noncoder like me.
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.