Minimalism is one of the cornerstones of my lifestyle. By ‘minimalism’ I mean owning no more stuff than you need. There are at least four reasons for having a minimalist lifestyle:
- You save money, which you can spend on more worthwhile endeavors.
- You remain mobile, which will enable you to travel more and to move wherever you want.
- You keep your mind clear because you don’t have to worry about your ‘stuff’.
- You help the environment by not using up fossil resources.
Below you can find all blog posts I’ve written about minimalism.
[insert_php]
// Necessary to make the setup_postdata() function work. Otherwise the loop returns the title and link (but not the excerpt) of the current PAGE each time instead of that of the POST.
global $post;
// Set the tag to display posts for in the line below.
$args = array( ‘posts_per_page’ => -1, ‘tag_slug__in’ => minimalism );
// Creates the loop.
$lastposts = get_posts( $args );
foreach ( $lastposts as $post ) :
setup_postdata( $post ); ?>