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

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.

Fix issue with displaced braces( )

This is a problem caused by switching a site from LTR to RTL and vice-versa. I’ve tested it as well, here is my output if I switch my site to RTL <?php echo “I am (developer)”; ?> renders (I am (developer This is normal behavior when you switch to a RTL language. The problem is, … Read more

Multiple item layout with one query

As @MridulAggarwal already stated, it’s a pretty basic PHP task that you’re confronted with: $wpse69584_posts = get_posts( array( /* Your Arguments */ ) ); echo $post[0][‘post_title’]; echo isset( $post[0]->post_excerpt ) ? apply_filters( ‘the_excerpt’, $post[0]->post_excerpt ) : apply_filters( ‘the_content’, $post[0]->post_content ) ; // etc. Or if you’re using a loop, it’s even easier: global $wpdb; if … Read more

Remove all paragraph tags

(obviously) untested, and make a backup of your DB first…but you ought to be able to do this natively in SQL: UPDATE wp_posts SET post_content = REPLACE(post_content, ‘<p>’, ”) WHERE (put whatever selection logic you want here…) Do the same for </p>. Like I said…make a backup first… (edit) geez, didn’t realize this was a … Read more