Auto Refresh Wordpress Post Div
I would like to autorefresh a certain div with the ID of blue everytime I update a post with that ID. I know the Jquery code looks something like this:
var auto_refresh = setInterval(
function ()
{
$('#blue').load('load.php').fadeIn("slow");
}, 10000);
Instead of loading "load.php" I would just like to reload the updated contents in the div which is done externally through 开发者_JS百科the wordpress admin panel. Any help would be greatly appreciated. Thanks everyone!
This was my Problem too, an idea:
You can create a JavaScript function which loads the content of your RSS file created by WordPress (http://domain.tld/feed/rss/) and puts the content of the new article with the id xyz in the div blue using .html()
function getContent(id) {
// Here the Function which loads your RSS File and Match your Content of your Article with the_ID = id
}
var content = getContent(<?php the_ID(); ?>); // the_ID() is a WordPress function
function refresh(content) {
$.get(content, function getNew(rssfile) {
$("#blue").html('');
$("#blue").html(rssfile);
});
};
$(function(){
refresh(content);
var int = setInterval("refresh(content)", 10000);
});
I will search now for an other Idea, but this example is just an idea, because i haven't find anything else how to refresh just an div with id = id;
The way to do this is by using the content in the external file which can be used within the loop or with out the loop using wp query. Hope this helps.
精彩评论