P
by Yury Pavlov
3 (2 reviews)
PCSH (PastaCode and SyntaxHighlighter)
Use PCSH to add code into your posts with the awesome SyntaxHighlighter plugin. So, past'a code!
Tested up to WP 4.4 (Current: 6.9)
v0.4.2
Current Version v0.4.2
Updated 10 years ago
Last Update on 10 Dec, 2015
Synced 13 hours ago
Last Synced on
Rank
#34,470
+8441 this week
Active Installs
10+
-9.1%
KW Avg Position
44
—
No change
Downloads
2.5K
—
Total downloads
Support Resolved
0%
—
No change
Rating
60%
Review 3 out of 5
3
(2 reviews)
Next Milestone 20
10+
20+
9,301
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
Need 4 more installs to reach 20+
Rank Changes
Current
#34,470
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
3.0
2 reviews
Overall
60%
5
1
(50%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(50%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Bitbucket | 44 | — | Tag | 14 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.4.2
- Last Updated
- Dec 10, 2015
- Requires WP
- 3.1+
- Tested Up To
- 4.4
- PHP Version
- N/A
- Author
- Yury Pavlov
Support & Rating
- Rating
- ★ ★ ★ ☆ ☆ 3
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Popup Builder - Create highly converting, mobile friendly marketing popups.
200K+ installs
#259
The SEO Framework – Fast, Automated, Effortless.
200K+ installs
#273
The Ultimate Video Player For WordPress - by Presto Player
100K+ installs
#319
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; }"