go41

the info you need to know


von Joern
Keine Kommentare

Same YouTube user channel feed import as above, but totally modified code using the WordPress function fetch_feed( $uri );on Google+ Thomas Scholz (toscho) https://plus.google.com/115532307838378431827 asked me to sanitize the output and cache the result. Thank you!fetch_feed caches for 12 hours by default, you might want to change this with wp_feed_cache_transient_lifetime…


von Joern
Keine Kommentare

Hi Joern,Having similar issues.My site: http://nu-phoria.com/Im currently using Twenty Eleven theme and have got the WP Featured Content Slider below the navigation menu. If you look at the category "DJ Sets", the last sub-category is going behind the Slider. I tried to edit the z-index as you mentioned above but…


von Joern
Keine Kommentare

to get the author displayed you have to add: <?php the_author(); ?>in arthemia index.php (main page) best in div class="meta"Code:<div class="meta">[<?php the_time('j M Y') ?> | <?php comments_popup_link('No Comment', 'One Comment', '% Comments');?> | <?php if(function_exists('the_views')) { the_views(); } ?>]</div>for example like this:Code:<div class="meta">[<?php the_time('j M Y') ?> by <?php…