! články z blogu na hl. stránku !

Je potřeba je připnout za nějaký div, v tomhle případě:

<div id="append_latest_article"> </div> a <div id="append_article"> </div>

 

a to pomocí těchto dvou scriptů pro 2 poslední:

<script type="text/javascript">
jQuery(function ($) {
var config = {contentUrl: 'http://code.kubanavratil.com/nase-novinky/'};
if ($('#append_latest_article').length) {$.get(config.contentUrl, function (data) {$('#append_latest_article').append($(data).find('.news-item:first').html()); }); }
if ($('#append_article').length) {$.get(config.contentUrl, function (data) {$('#append_article').append($(data).find('.news-item ~ .news-item').html()); }); }
});
</script>

 

a pro 3 poslední:

<script type="text/javascript">
jQuery(function ($) {
var config = {contentUrl: 'http://code.kubanavratil.com/nase-novinky/'};
if ($('#append_latest_latest_article').length) {$.get(config.contentUrl, function (data) {$('#append_latest_latest_article').append($(data).find('.news-item:first').html()); }); }
if ($('#append_latest_article').length) {$.get(config.contentUrl, function (data) {$('#append_latest_article').append($(data).find('.news-item ~ .news-item').html()); }); }
if ($('#append_article').length) {$.get(config.contentUrl, function (data) {$('#append_article').append($(data).find('.news-item ~ .news-item ~ .news-item').html()); }); }
});
</script>