Jetpack infinite scroll render – make different depending on post type?

Replace the above mytheme_render_infinite_scroll function with this: function mytheme_render_infinite_scroll() { while ( have_posts() ) : the_post(); if (‘mytheme_portfolio’ == get_post_type()) : get_template_part( ‘content’, ‘archive-portfolio’ ); else : get_template_part( ‘content’, get_post_format() ); endif; endwhile; }

Pinterest Integration Using functions.php

There were several errors in your code. The biggest was that the function didn’t even have a closing bracket, but we can probably assume that was just not copied into your post, otherwise nothing would have been working for you. This is a filter on the content right? It looks like you want to append … Read more

Convert all youtube link to embed

EDIT After reviewing your edit, you may want to try following These Instructions To embed a video or another object into a post or page, place its URL into the content area. Make sure the URL is on its own line and not hyperlinked (clickable when viewing the post). It sounds like you would want … Read more