我为 wordpress 网站制作了 Jquery mobile。现在我正在寻找适用于 Android 公开市场的 APK。任何人都可以帮助我更多的细节 Jquery 移动和 PHP 到 APK 应用程序。
我在这里是全新的。
谢谢
这是带有 PHP Wordpress索引代码的Jquery mobile
<ul data-role="listview" data-theme="b" data-filter="true" data-counttheme="e">
<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>
<li>
<?php the_post_thumbnail(); ?>
<h2>
<a href="<?php the_permalink(); ?>" data-transition="slidedown"><?php the_title(); ?></a>
</h2>
<article> <?php echo the_excerpt(); ?> </article>
</li>
<?php endwhile; endif; ?>
</ul>