different startsite for IOS and change menu

If the url’s for both site is different, You can simply check if site is being viewed from mobile or not and than you can redirect to your second site if it is mobile… Here is one of code who detects whether it is mobile or not… http://detectmobilebrowsers.mobi/ You can use such code detect mobile … Read more

Turning a WP Site Into an iPhone/iPad App [closed]

The best way to do this would be to use CSS3 media quires: @media (max-device-width: 480px) but requires more work. The quick and dirty way to make your WordPress theme app-like would be to add the viewport meta tag to the <head> of your page: <meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″> Viewport scales you page to … Read more

metaWeblog.getRecentPosts is returning nothing in my iphone app

The XML-RPC has a filter, where you can add your custom methods: function wpse60127_xmlrpc_methods( $methods ) { $methods[‘newWPSE60127Method’] = ‘wpse60127_new_method’; return $methods; } add_filter( ‘xmlrpc_methods’, ‘wpse60127_xmlrpc_methods’ ); Simply add your own methods there (core methods/functions) are also allowed.

Broken images on iphone

You either upload or convert your images after upload to webp format, which is supported by limited range of browsers (see https://caniuse.com/#feat=webp for complete list). The important information for you is that it’s not supported in iOS Safari I suggest you re-upload your media in other image format (jpeg, png etc.). If you want to … Read more