On this page https://kriesi.at/documentation/enfold/blog-post/#toggle-id-26
your solution of adding this to the child functions
<script src=”https://gist.github.com/graphitivity/5350a5aaaaade20d131c04ca3a65f47a.js”></script>
Produces this error:
Your PHP code changes were rolled back due to an error on line 8 of file wp-content/themes/enfold-child/functions.php. Please fix and try saving again.
syntax error, unexpected ‘<‘, expecting end of file
Hey clcintx,
Which blog type do you use? If you’re using the blog grid layout you can i.e. use this code to change the sort order:
add_filter('avia_post_slide_query', 'avia_post_slider_custom_query', 10, 2);
function avia_post_slider_custom_query( $query, $params ) {
$query['orderby'] = 'date';
$query['order'] = 'ASC';
return $query;
}
Best regards,
Peter