P
by Oleg Soromin 3 (2 reviews)

PCSH (PastaCode and SyntaxHighlighter)

Use PCSH to add code into your posts with the awesome SyntaxHighlighter plugin. So, past'a code!

PCSH (PastaCode and SyntaxHighlighter) ranks #45,010 among WordPress.org plugins with 10+ active installations, is #1,302 of 3,325 in the Social & Sharing category, a 3/5 rating from 2 reviews, and was last updated Dec 10, 2015. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 4.4 (Current: 7.1.2)
v0.4.2 Current Version v0.4.2
Updated 10 years ago Last Update on 10 Dec, 2015
Refreshed 15 hours ago Last Refreshed on
#1,302 of 3,325 in Social & Sharing Top 50% by installs No update in over a year
View on WordPress.org
Rank
#45,010
No change
Active Installs
10+
-16.7%
KW Avg Position
77
No change
Downloads
2.5K
+2 today
Support Resolved
0%
No change
Rating
60%
Review 3 out of 5
3 (2 reviews)

Next Milestone 20

Total Progress 20%
10+ 20+
42,989
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 8 more installs to reach 20+

Rank Changes

38,753 40,869 42,986 45,102 47,218 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
32,455 36,351 40,247 44,143 48,039 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #45,010
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

3.0
2 reviews
Overall 60%
5
1 (50%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
1 (50%)

Frequently Asked Questions

Common questions about PCSH (PastaCode and SyntaxHighlighter)

Paste these lines into your functions.php theme file : "add_filter( 'option_pcsh_cache_duration', 'my_pcsh_cache_duration' ); function my_pcsh_cache_duration( $duration ) { $duration = DAY_IN_SECOND*3; // 3 days return $duration; }"
Paste these lines into your functions.php theme file : "add_filter( 'option_pcsh_style', 'my_pcsh_style' ); function my_pcsh_style( $scheme ) { $scheme = 'my_awesome_style'; //CSS filename into the plugin css directory return $scheme; }"
Paste these lines into your functions.php theme file : "//If you just want php, html, css and javascript support add_filter( 'pcsh_langs', '_pcsh_langs' ); function _pcsh_langs( $langs ) { $langs = array( 'php' => 'PHP', 'markup' => 'HTML', 'css' => 'CSS', 'javascript' => 'JavaScript' ); return $langs; }"
Paste these lines into your functions.php theme file : "//Take WordPress SVN, for example //register a provider add_filter( 'pcsh_services', '_pcsh_services' ); function _pcsh_services( $services ) { $services['wordpress'] = 'core.svn.wordpress.org'; return $services; } //Define pastabox lightbox inputs add_action( 'pcsh_fields', '_pcsh_fields' ); function _pcsh_fields( $fields ) { $fields['wordpress'] = array( // 'wordpress' or 'whatever' 'classes' => array( 'wordpress' ), // same value as the key 'label' => sprintf( __('File path relative to %s', 'pcsh'), 'http://core.svn.wordpress.org/' ), 'placeholder' =>'trunk/wp-config-sample.php', //if placeholder isn't defined, it will be a textarea 'name' => 'path_id' //these value return shortcode attribute (path_id, repos, name, user, version) ); return $fields; } //Build the function to retrieve the code // "pcsh_wordpress" hook name (1st param) = "pcsh_" + "wordpress" or "whatever" add_action( 'pcsh_wordpress', '_pcsh_wordpress', 10, 2 ); function _pcsh_wordpress( $source, $atts ) { extract( $atts ); if( $path_id ) { $req = wp_sprintf( 'http://core.svn.wordpress.org/%s', str_replace( 'http://core.svn.wordpress.org/', '', $path_id ) ); $code = wp_remote_get( $req ); if( ! is_wp_error( $code ) && 200 == wp_remote_retrieve_response_code( $code ) ) { $data = wp_remote_retrieve_body( $code ); $source[ 'url' ] = $req; //url to view source $source[ 'name' ] = basename( $req ); //filename $source[ 'code' ] = esc_html( $data ); //the code !! //$source[ 'raw' ] contain raw source code. But there are no raw source code delivered by Wordpress SVN } } return $source; }"

Sign In / Register

You need to sign in or register to use this feature.