patrickowtf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Losing links when echoing post content?thanks josh. but i just figured it out without that.
changed it from
$content = $content_post ->post_content
to
$content = get_the_content();
which apparently keeps the links in tact.thanks!
Forum: Plugins
In reply to: Gallery Carousel not working?i got the gallery to work, but i want to style it like the “rectangle” style from this blog post…
http://en.support.wordpress.com/images/gallery/#manage-gallery-styles-individuallyis there an easy way to get my gallery to display like that?
Forum: Fixing WordPress
In reply to: Gallery Support.what gallery did you end up using? i’m having the same problems…
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Carousel not workingHow did you get the gallery to work? It seems to be working on your site now. I’m having a problem with mine…
Forum: Fixing WordPress
In reply to: trying to add a jquery plugin…where does it go?ok so i put the js file in my theme root, and enqueued the script in the functions.php file, but it’s still not working.
i can view the source and see the js script properly linked at the top of the page, but for some reason i still can’t get it to work, even though it’s working perfectly on my local page.
At the top of my main page(the page where i’m trying to display the thumbs) I have
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> Print to test if loop is function. <?php endwhile; ?> <?php endif; ?>It’s only getting information for ONE post, the one i’m currently on… how do I get it for posts that are in my database with a specific tag?
Forum: Fixing WordPress
In reply to: can't get the next post link to work.I ended up figuring it out. I’m not sure why, but this is the code I’m using, and it works.
<?php previous_post_link( '%link', '<span class="meta-nav">«</span> %title' ) ?> <span style="color: #bbb;">•</span> <?php next_post_link( '%link', '%title <span class="meta-nav">»</span>' ) ?>[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]
Forum: Fixing WordPress
In reply to: can't get the next post link to work.single.php
http://pastebin.com/kh8Kq3Dxthis is a post and this is where i’d like to link to the next post.
[No bumping. If it’s that urgent, consider hiring someone.]