Facebook video on a post appears in a strange language [closed]

It’s a localization problem, Facebook is loading a who-know-where javascript sdk to embed the video. Switch to code view inside your wordpress editor and search for the js include url, similar to https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5 this, and change whatever string appears instead of en_US with en_US. Where the string is located depends on how you are doing … Read more

Need fixing generic posting on facebook

This is quite easy to do if you have access to edit the header of your website. All you need to do is enter the appropriate Open Graph metadata for each page. ie (and taken steaight from http://ogp.me/): <html prefix=”og: http://ogp.me/ns#”> <head> <title>The Rock (1996)</title> <meta property=”og:title” content=”The Rock” /> <meta property=”og:type” content=”video.movie” /> <meta … Read more

Sort wordpress posts by facebook likes [closed]

You can either sort them with jQuery on the front-end, or pull the like count into the back-end and store on the post_meta. Then sort by meta value in your loop. FACEBOOK http://graph.facebook.com/?id=http://{URL} Result { “id”: “http://{URL}”, “shares”: intgr/(number) } Other types of share counts.

True or False: Is an Apache error or PHP error the same as a WordPress error?

WordPress errors are application level errors. PHP errors are language syntax or usage errors and appach error are errors detected during the web server operation. Errors, especially minor ones, might be reported “upwards” and look like they are wordpress application errors, or logged downwards and be part of the apache server error log if the … Read more