Where does Jetpack store markdown?

Just found the answer after exploring the MySQL database and finding the right field. Here is an answer from Ryan Cowles at the Jetpack staff: The HTML version of your post is stored in post_content and the Markdown version is stored in post_content_filtered. You can see how it’s stored here. Specifics aside, if you write … Read more

Unable to setup jetpack on my site

Is your web site publicly available? Do you have CURL enabled on your site? Either situation might cause your issue. If the above is not helpful, then provide more details in a comment to your question, or edit the question. Provide enough details so others will know exactly what you did, and what went wrong.

Jetpack Top post widget (display post views)

Use this code in child theme or custom snipets plugin: /** * Top Posts Widget: add post views below each post. */ function jetpackme_add_views_top_posts( $post_id ) { if( function_exists( ‘stats_get_csv’ ) ) { $stats_query = “page_stats_for_” . $post_id; if ( false === ( $special_query_results = get_transient( $stats_query ) ) ) { $stat_options = “post_id=”.$post_id.”&days=-1″; $post_stats … Read more

How can I get the Jetpack Image plugin to open links in a new window? [closed]

There is no hook available in the plugin. One solution is to simply copy this Jetpack Widget and add the target option. Another is through jQuery, in the file /theme/functions.php: add_action( ‘wp_enqueue_scripts’, ‘jetpack_widget_wpse_88067’ ); function jetpack_widget_wpse_88067() { wp_enqueue_script( ‘jetpack-hack’, get_stylesheet_directory_uri() . “/js/jethack.js”, array( ‘jquery’), // dependencies false, // version true // in footer ); } … Read more