具有嵌入式内容的WP单篇文章加载Ajax

时间:2019-10-03 23:04:40

标签: ajax wordpress post embedded-container

我有CPT,其中包含来自3d资源的嵌入内容。为了添加内容,我在脚本中使用了一行  src =“ https://website.com/embed.js”  和带有data-embed =“ link_to_embed”的线宽div“
 打开单个帖子时,动态生成上面的内容。
我在存档页面上列出了帖子标题。通过标题单击使用ajax调用单个帖子。除了内容,一切都很好并且可以工作。除了生成的内容,我只看到脚本和div的两行。

这是我正在使用的ajax脚本:

$(document).on('click', 'a.post-link', function (event) {
    event.preventDefault();

    $.ajax({
        // URL to which request is sent.
        url: ajaxobject.ajaxurl,
        type: 'post',
        data: {
            action: 'load_post',
            post_id: $(this).data('id')
        },

        beforeSend: function () {
            $('.content > .entry .entry-content').html('<img src="' + ajaxobject.loadingimage + '" />');
        },

        success: function (response) {
            $('.content > .entry .entry-content').hide().html(response).fadeIn('slow');
        }
    })
})

有没有办法使用ajax显示嵌入的内容?找不到关于此的任何信息

0 个答案:

没有答案