How do i remove all Bit.ly shortened links from site?

This can be solved by making SQL queries directly in the database. But this only works easily for replacing the URL of a link, not the whole link markup. Replacing all bit.ly links with their original long URL would be the best way to solve the blacklist problem. This is the query you would do, … Read more

How to get Facebook to see YouTube/Blip embeds when sharing a link?

All in One SEO plugin is setting your FaceBook open graph meta tags. For Facebook to “see” your video, you need to set video meta tags: <meta property=”og:video” content=”http://example.com/movie.swf” /> <meta property=”og:video:secure_url” content=”https://secure.example.com/movie.swf” /> <meta property=”og:video:type” content=”application/x-shockwave-flash” /> <meta property=”og:video:width” content=”400″ /> <meta property=”og:video:height” content=”300″ /> Whether or not this is possible with that plugin … Read more

Blogroll/Lins Menu not visible in my backend?

From the codex: “As of Version 3.5, the Links Manger and blogroll are hidden for new installs and any existing WordPress installs that do not have any links. If you are upgrading from a previous version of WordPress with any active links, the Links Manager will continue to function as normal. If you would like … Read more

Disable title link in the backend for non-admins

I believe the links below achieve what you’re looking to do when they’re combined. If you want to have administrators or just specific admin IDs excluded you could add to the if statement in the function like I have done with current_user_can function; function perm($return, $id, $new_title, $new_slug){ global $post; if($post->post_type == ‘testimonials’ && current_user_can(‘manage_options’)) … Read more

Display category page number links for older posts

First, that old site is not any version of WordPress. Second, don’t hack TwentyTwelve, make a child theme. if you hack it, your changes will be lost when the theme is updated. Third, the easiest way to achieve pagination like that would be WP-PageNavi.

Put password on a wordpress link in a article

I think this is almost what the article Add Private Content to Posts via Shortcode talks about. But it’s only for registered users: add_shortcode(‘private’, ‘private_content’); function private_content($atts, $content = null) { if ( is_user_logged_in() ) return ‘<div class=”private-content”>’ . $content . ‘</div>’; return ”; } And used inside the post/page like: [private] This post contains … Read more