Tagged Questions
0
votes
0answers
22 views
Instead of showing the post it just shows the URL
When I tried to share this link http://www.j1studios.com/archives/6032 on Facebook, it would just repeat the URL and not show the title of the post, or the image. It's as if the link is broken.
0
votes
1answer
140 views
Link to full size post thumbnail
I´m using this code:
<?php
// get portfolio
$args = array( 'post_type' => 'portfolio', 'posts_per_page' => 100, 'orderby' => 'title', 'order' => 'asc' );
$loop = new WP_Query( $args ); ...
1
vote
1answer
532 views
Change website URL without breaking links or images? WP 3.3
I am using Wordpress 3.3.2.
Currently I am working on a website in a dev folder on my domain, dev.domain.com. Upon creating pages and blog posts, it just occurred to me that when I move the WP ...
0
votes
1answer
49 views
Link to full-size image for subscriber only
I'm looking for a way to disable the "link to full-size image" for people that are not logged in. I would like that people become a subscriber before they can download my full size images.
Is this ...
5
votes
1answer
807 views
Uploading Images in the Link Manager
In /wordpress/wp-admin/link-add.php there is the possibility to add an image to a link, but it belongs to the category "Advanced" and is really a little too advanced for an average user, which needs ...
0
votes
2answers
117 views
Clicks registering on Preview DNS site
I set up my site on a PreviewDNS, I have since pointed my Domain to the correct place and changed all the links to non-previewDNS links.
However I can see (using Jetpack) that visitors to my site are ...
0
votes
3answers
872 views
How can I get a different image size, if all I have is the link?
For various reasons, I can't use Wordpress' built-in Thumbnail functionality.
What I want to do instead is to use the first image in the post as the thumbnail.
Here's what I found in the codex: Show ...
3
votes
1answer
2k views
remove links from images using functions.php
I am looking for a way to remove the attachment link from images in the post content.
I would like to add this to the functions.php in my theme. I know you can disable this in the post on a per ...
0
votes
2answers
304 views
Gallery - custom html for inserting images
I have gallery (I'm using Cleaner Gallery plugin) with many images. I want to add asynchronous image loading with jQuery (I'm using JAIL to do that). But to use this JAIL plugin I need to change ...
1
vote
3answers
3k views
How to remove link from an image in a post?
When image is being added in a post it is being wrapped with a <a href></a>
I want to know which class controls this segment and where I can find a decent doc for this kind of problems ...
2
votes
2answers
4k views
Default Image Link Removal
Just wondering if there is a way to remove WordPress's default function of adding a tag around an inserted image. I assume its a "remove_filter" function like you can do for WPAutoP, but all my ...
4
votes
5answers
4k views
Disable image attachment links
Is there a way to disable image attachment links trought a filter in functions.php or something ? I know it's possible to do it manually when you add an image to a post but I want to disable this ...
0
votes
2answers
847 views
how to grab first link in post… and of course call it
I have been trying to get the answer to this for ages now and wondered if anyone here could help. I would like to 'grab' the first link in a post and attach it to a button/image. I have tried the ...
0
votes
1answer
452 views
adding images to wordpress pagination?
I'm working with a blank theme and my nav.php looks like this
<div class="navigation">
<div class="next-posts" style="float: left;"><?php next_posts_link('« Older Entries') ...
1
vote
1answer
1k views
Link Attachment Image to Category
How do you link an attachment image to its category?
function wp_attachment_image($size = thumb) {
if($images = get_children(array(
'post_parent' => get_the_ID(),
...
0
votes
1answer
160 views
How Do I Link My Whole Featured Article Image?
I'm using the Front Slider plugin to display featured articles on my site. I've done some editing to the plugin to make it look the way I want. Somewhere along the way, I must have missed changing a ...
1
vote
1answer
2k views
Image as a link using wp_nav_menu()
In creating a custom navigation menu in TwentyTen ( WP3.01), is it possible to make an image a link to a page on the same site, using wp_nav_menu() ? Is it the case that wp_nav_menu() echos or returns ...
-1
votes
3answers
726 views
Stop underlining image links
One my widget bar, I have an image which is hyperlinked. The problem is that CSS underlines it. How do I remove the underline?
Update:
Just noticed that this is what is causing the underline:
}
...
3
votes
3answers
779 views
How to add a link in a image's caption?
I would like to add a link to the caption of a photo in one of my posts. I can type in the HTML for the link in the caption, but when I publish the post the link gets removed.
How do you add a link ...