jQuery自定义应用程序与Wordpress集成

时间:2017-07-25 16:57:10

标签: jquery mysql wordpress integration

我创建了html / jquery app,我目前通过将其作为原始html嵌入其中一个页面来运行。

网站已运行Wishlist成员插件。

我需要以这种方式将应用程序与WordPress集成,因此我将能够在当前用户下的数据库中保存/检索一些JSON数据,因此只有该用户才能访问它。

我在编程方面仍然非常新鲜,任何帮助/方向都将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

我实际上自己找到了答案,毕竟它并不是那么困难...... 创建自定义模板页面,该页面需要是PHP文件:

<?php
/**
 * Template Name: Your Custom Name
 *
 */
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />

    <!-- page title, displayed in your browser bar -->
    <title><?php bloginfo('name'); ?> | <?php is_home() ? bloginfo('description') : wp_title(''); ?></title>

    <!-- add feeds, pingback and stuff-->
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <?php wp_head(); ?>
</head>

<body id="top">
<div class='container_wrap' id='main'>
    <div class='container'>
        <?php if (have_posts()) : ?>
            <?php while (have_posts()) : the_post(); ?>
                <?php the_content(); ?>
            <?php endwhile; ?>
        <?php endif; ?>
    </div>
    <?php wp_footer(); ?>

<!--        Your HTML content here-->

</body>
</html>

&#34;您的自定义名称&#34;将显示在右侧的wordpress页面内,因此您可以选择自定义模板。

您可以在此处插入代码&#34;您的HTML内容&#34;。

我在https://premium.wpmudev.org/forums/topic/blank-wordpress-template-no-header-no-footer-no-sidebar?utm_expid=3606929-109.P6e7JvhjTrWFxwrJZjRkog.0

找到了这个模板

现在,插入此文件的最佳位置将是子主题文件夹,最安全的方式。如果您需要有关儿童主题的说明,请参阅一篇好文章http://www.wpbeginner.com/beginners-guide/how-to-install-a-wordpress-child-theme/

这对我有用。祝你好运!