Posts

Showing posts from June, 2015

Cordova and Android SDK installing on Windows 7 and 8 for Hybrid Mobile Apps Development

Image
1: Download and Install Java Download and install a recent release of the Java SDK for your computer. You should be able to open a new instance of cmd.exe and run java without problems. If not (you made sure to open a new cmd window, right?), then open your system environment variables, and add to or create a new user variable called PATH with the full path to the bin folder of the new Java SDK installation. 2: Download Apache Ant Apache Ant is needed by Android and Cordova for building projects. Download and extract this zip file somewhere on your computer: http://mirror.tcpdiag.net/apache//ant/binaries/apache-ant-1.9.4-bin.zip Add the full path to the bin/ folder to the end of your PATH environment variable. 3: Download the Android SDK Go and download the And

How Display Content on a Custom Page in WordPress

<?php $recent = new WP_Query("page_id=159"); while($recent->have_posts()) : $recent->the_post();?> <!-- 159 is Page ID  --> - - - -  - - - - - - - - - - - - - - - - -  <?php $recent = new WP_Query("page_id=**ID**"); while($recent->have_posts()) : $recent->the_post();?>        <h3><?php the_title(); ?></h3>        <?php the_content(); ?> <?php endwhile; ?>