Blog
Blog
The Blog element enables you to insert your blog posts anywhere you want. The blog can be divided up to three columns and in as many rows you need. You can also display only posts from one category and define the order. Ajax load checkbox should be checked if you want the pagination to use Ajax loading of new entries (Ajax means that visitor will not leave the current page while retriveing new posts). You can use as many blog elements in your layout as you want. You can insert blog after blog presenting different categories or styles. When you insert a blog element the Shortcode Generator will create Shortcodes for it in your layout. You can also insert shortcodes yourself if you prefer it this way. Blog types : 1 – Blog Regular, 2 – Blog Circles, 3 – Blog Circles Two Columns, 4 – Blog Circles Three Columns, 5 – Blog Small Circles, 6 – Blog Small Circles Two Columns, 7 – Blog Small Circles Three Columns
// Blog Shortcode Examples // [aa_blog type="$number" rows="$number" category="$id" order="$order" pagination="yes" ajax="yes" values="DESC"] // // type="$number", type of blog / values supported: 1,2,3,4,5,6 or 7 // rows="$number", number of rows / values supported: 1+ // order="$order", order posts by / values supported: date, title, rand, author, comment_count // category="$id", category ID / use -1 for all categories, or enter category ID for single category // pagination="yes", show pagination / values supported: yes, no // ajax="yes", ajax post loading / values supported: yes, no // values="DESC", Ascendic posts or Descendic / values supported: ASC, DESC //This code will generate an one columned Blog element in 5 rows from all categories without AJAX load [aa_blog type="1" rows="5" ajax="no"] //This code will generate an four columned Blog element in 1 row from category_id 7 with AJAX load [aa_blog type="4" rows="1" category="7" ajax="yes"]