
Hjelp
Flytte blog fra WordPress.com til .org (http://en.support.wordpress.com/moving-a-blog/)
The content transfer process is similar to that described above (between WordPress.com blogs):
1. In the old blog, go to Tools → Export and download the XML (WXR) file to your computer.
2. In the new blog, go to Tools → Import → WordPress and upload the file you downloaded in step 1. Make sure that you choose the option to Download & import file attachments.
Note that the above assumes that you are using the latest version of the WordPress software. If you are having troubles getting your WordPress.org installation up and running, please refer to the appropriate forums (http://wordpress.org/support).
Videresende til Mobil/lesebrett
Wordpress plugin
http://wordpress.org/extend/plugins/wptap-mobile-detector/screenshots/
http://wordpress.org/extend/plugins/iphone-webapp-umleitung/
As HTML (http://css-tricks.com/snippets/javascript/redirect-mobile-devices/)
<script type=”text/javascript”>
<!–
if (screen.width <= 699) {
document.location = “mobile.html”;
}
//–>
</script>
iOS specific
<script language=javascript>
<!–
if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
location.replace(“http://url-to-send-them/iphone.html”);
}
–>
</script>