Paste Function Broken

Can you please try clearing out your cache and cookies using the guide below? http://en.support.wordpress.com/browser-issues/#clear-your-cache-and-cookies Also, please make sure your browser is updated to the most recent version: http://browsehappy.com Then, finally try testing on browsers like Google Chrome and Firefox. Also can you check if copying works in Text Mode or not ? Update : … Read more

Adding padding above menu

This forum is specific to WordPress internal workaround and your question is regarding element styling which does not belong here. Please try to use specific sites according to your question. For your problem, add the following lines in your theme’s stylesheet and it should be fixed. #masthead #cms-header.header-ontop { padding-top:15px; } #masthead #cms-header.header-sticky { padding-top:0; … Read more

How to show only text from post in WordPress

You will need to edit the wordpress theme to do this. If you know how to do this, all you need to do is replace the_content(); with this below: <?php ob_start(); the_content(‘Read the full post’,true); $postOutput = preg_replace(‘/<img[^>]+./’,”, ob_get_contents()); ob_end_clean(); echo $postOutput; ?> And all images will be removed from your posts.

Is there a way to reorder a collection of posts to read from top (oldest) to bottom (newest)?

You can reverse the order of the main query via the pre_get_posts action: function wpa85668_ascending_order( $query ) { if ( $query->is_home() && $query->is_main_query() ) $query->set( ‘order’, ‘ASC’ ); } add_action( ‘pre_get_posts’, ‘wpa85668_ascending_order’ ); If it’s a custom query, just set the order query var to ASC in the arguments passed to the query.