The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
1answer
57 views

Custom Fields link to other pages, not search

I am attempting to create a website, which has a similar taxonomy system to IMDB, but instead of Movies, it is referencing Musicians. I have created a custom post type for Artists, with a few custom ...
0
votes
2answers
154 views

I want to remove the links from the term list returned by get_the_term_list

I want to keep this category title on my pages, but I don't want it to be a link. <?php echo get_the_term_list( get_the_ID(), 'portfolio_cats', ' ', ' , ', ' '); ?> Can anyone help? Thanks
0
votes
2answers
45 views

how do I get rid of the links and all the links related menu items on the admin ui?

Since I won't be using the built-in links feature of wordpress, I see no reason in keeping its related menu items on the admin ui causing nothing but clutter. How do I do that?
1
vote
1answer
59 views

How to automatically remove links from WordPress Biographical Info?

I want to automatically remove any kind of links from author's Biographical Info instead of doing it manually everytime. Whenever a user adds any link to the Biographical Info box, it should be ...
1
vote
1answer
91 views

custom menu widget where menu title is a link

I am looking for, like the title of this question indicates, a custom menu in wordpress where the menu title itself is a link. It seems like a very simple thing, but after a lot of searching I've come ...
0
votes
1answer
189 views

Links do not open from click, only in new tab [closed]

I'm fairly new to Wordpress, but I'm encountering a strange issue. I have a menu set up, and I've put links to some of my pages inside of it. But, when I try to click on any of the menu items, nothing ...
0
votes
1answer
412 views

Thumbnails and Lightbox

As mentioned on wordpress.org, it is possible to link a thumbnail to its larger self. <?php if ( has_post_thumbnail()) { $large_image_url = wp_get_attachment_image_src( ...
0
votes
1answer
379 views

Internal Links to Pages in PHP?

What is the best way of linking to WordPress pages with PHP? Considering that I move the page from a local server to a live server to another URL? <a href="/wordpress/services" title="Read More" ...
2
votes
2answers
242 views

root-relative links for multiple parked domains

I have five domains pointing to the same server/wp installation. the domain names are important and my visitors need to be able to stay on their preferred domain as they surf through my site. how do ...
1
vote
1answer
501 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
34 views

Format HTTP links

I have a custom page template creating an xml feed found on a WP page at http://example.com/xml/ I am trying to access this xml document via Google Maps but it appears I need the actual file name ...
0
votes
1answer
270 views

How to add a Wordpress page with multiple picture links?

I'm new to WordPress.org and currently I'm making a food recipe website. What I want to do is to create a menu with different categories, eg Pork, Seafood, beef etc and when I clicked into each ...
1
vote
1answer
123 views

Any way to assign Post Categories and Tags to Links?

I would like to assign post categories and post tags to the links in my 'Links' section, and (ideally) remove the link categories feature since it would be redundant. Anyone know how to do this?
0
votes
1answer
104 views

Image not showing up in media loader success area - followup

This is part two to this question: Post Specific Uploader I am using an upload filter to put files in a location based on post_id. Now when the file uploads, the URL path in the meta is wrong and the ...
0
votes
1answer
44 views

Link to older links

Im trying to have 5 posts for page in my blog. This is what Ive used in index.php <?php get_header(); query_posts('posts_per_page=5'); // The Loop if (have_posts()){ ...
0
votes
2answers
179 views

Good plugin for managing outbound links?

I've looked around and around for a good WordPress plugin. I know this is a shopping question, but such an important aspect of managing your WordPress blog, I'm surprised to find that there isn't a ...
0
votes
2answers
41 views

Related posts for a post

For a post we need to maintain a list of "related posts" (links to other posts), and this list should be visible to a user. What is the easiest way to do this?
1
vote
2answers
302 views

How to change server name on Wordpress Installation?

I am not sure if the title of the question is acurate enough but here it goes. I have set up an Ubuntu server inside a VirtualBox VM, I have enabled port forwarding so when I type on the host ...
0
votes
1answer
121 views

2 item in a same menu pointing to 1 page

I have a menu containing 2 item that pointing to 1 page, my question is how do i highlight the top level item according to where i click it. <nav> <ul class="mainNavi" id="menu-main"> ...
0
votes
1answer
801 views

How to modify the Register link in the login page?

This is probably very simple, but I would like to add a hook to my theme's functions.php file in order to change the Register link on the login page (wp-login.php). How would I do that?
-1
votes
1answer
38 views

Removing components / links from site? [closed]

There are two links that do not show up in the administrative panel under links http://feeds.feedburner.com/awesem and http://feedburner.google.com/fb/a/mailverify?uri=awesem How do I remove these ...
0
votes
1answer
48 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 ...
0
votes
1answer
59 views

wp_insert_link not working

Im using this code to insert links into my blog: $linkdata = array( 'link_name' => $title, 'link_url' => $url, 'link_catetory' => 3, // my cat ...
0
votes
1answer
40 views

How to link post titles on page A to its posts on page B?

I set and reversed the order of a list of post titles on my front page with: <?php global $post; $args = array( 'category' => 6 ); $myposts = get_posts( $args ); $reverseposts = array_reverse( ...
-1
votes
1answer
67 views

What is making these links open as new windows?

<?php } } ?> <?php else : ?> <li><div class="columb-shadow2"><img src="<?php echo get_template_directory_uri(); ...
0
votes
1answer
210 views

anchor tag in header not working on other pages except the home page

I have a anchor tag that wraps around my logo image that takes you back to the home page using the following <a href="<?php bloginfo('url'); ?>"><img src="<?php ...
1
vote
1answer
27 views

Enumerating over a category of links

I need to show a list of links, similar to what "Bookmarks" widget does. But Bookmarks widget is not suitable, because I need to display links (with removed "http://") instead of titles and also ...
5
votes
1answer
734 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 ...
1
vote
2answers
600 views

Separator for custom nav menu

I creating a custom footer navigation in wordpress. I looked all over the wordpress documentation and still haven't found anything. So, what I'm trying to do is add an "|" in the navigation like this: ...
1
vote
1answer
279 views

Problem with meta box in Links

I have troubles saving the data of the meta box in the link part of the admin. My code is working, because when I try it in the post or page part, it saves the data, but in Links it just won't. Here ...
0
votes
1answer
105 views

javascript and css links not working on sever

I have some Jquery links in my header. First off I am probably not using the proper wordpress function to do this. Right now on my site the code that is below is not working. These links aren't there, ...
2
votes
1answer
61 views

How to attach Links into page/post or custom post type?

I need to create or use an existing 3rd party plugin to attach any links (one or more) to a page, post or post-type from the WP link manager: http://example.com/wp-admin/link-manager.php I need a ...
0
votes
1answer
95 views

child pages from home (or main) page [closed]

How do I create child pages which WP recognises (so I can use the $wpdb->get_results() function in them), and which I can display from my main/home page. Would I then use normal a href="some url" ?? ...
0
votes
1answer
55 views

Linked pages from plugin on front can't see $wpdb

I obviously need more knowledge re this one. From my plugin. I have a custom main page which displays my custom db data table of a list of stores. Each store has a "link" ie using a href eg. <a ...
0
votes
1answer
44 views

I am not getting Backlink/interlinks notifications! [closed]

When I link my old post in the new one and click publish, I don't get the pingback alert/notification on the dashboard (neither in comments section). Does it got disabled? How can I enable it?
0
votes
2answers
112 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
1answer
60 views

Can i have a slider image with images on my wordpress.com site? [closed]

Now, what i wish to do is set a page as a static as my landing page on my wordpress.com site. That page should have a couple of slider images which would be hyper-linked to my other pages, not ...
0
votes
1answer
502 views

Change description of my Jetpack facebook shared links [closed]

When I try to share a link from my WordPress site on facebook using the Jetpack Sharing Settings the link shows up like this: (My Featured image picture here) Put a hat on yo’ baby! | Trendz with ...
2
votes
2answers
53 views

Turning broken link into search term?

I'm migrating a Typepad subdirectory install to a Wordpress subdomain install, and most of the links will be broken. The rewrites work so that; http://mainsite.com/blogs is rewritten to ...
1
vote
1answer
49 views

How to prevent a page from being linked in the menu/crossbar

I apologize if the question is confusing. Let me explain: I'm running a modified version of Twentyten and I've been doing the parent/child thing with my pages, which show up on the horizontal menu ...
0
votes
2answers
696 views

Make Current/Active Page Number a Link (WP_LINK_PAGES)

With the default wp_link_pages the current/active page number is not a link. I would like to find a code/hack which turns the current/active page into a link to the top of the page. I am already ...
0
votes
3answers
807 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 ...
0
votes
1answer
278 views

How to show pages in menu without link

I need to have a menu like this: - a (link to a) -- b (link to b, children of a) -- c (link to c, children of a) - d (NO LINK, #) -- e (link to e) I have the menu composed by the pages, as ...
1
vote
1answer
149 views

Remove Admin sidebar link

I have a taxonomy link in my admin sidebar i'd like removed from view. Only in the sidebar though, i will still be using the function in the post view, so if that creates problems a simple simple ...
1
vote
1answer
368 views

Get Stylesheet To Showup in WP Admin Panel Editor

So I have a css file that is called blue.css and a universal one called style.css I have a few css colors inside a /css folder. How do I get all those css files to show up in my Admin panel editor?
0
votes
1answer
252 views

links to Media Library content in sidebar per page

I have a bunch of PDF files in my Media Library and I want to show the relevant ones on a per-page basis in the sidebar. So on the 'About Cats' page, I want ILoveCats.pdf and cat-food.pdf from the ...
0
votes
1answer
23 views

How to create several Post pages

I have a question regarding the Posts.. When I create a new Post it will display on the Home page and not for ex. in the photogallery page where I want to have it... Is there any way how to define ...
3
votes
2answers
1k views

Adding jquery and thickbox to wordpress theme

I would like to add thickbox for the template which I develop to wordpres. At this time I'm trying with a clean template that have only header.php footer.php index.php and functions.php I've included ...
-2
votes
2answers
111 views

Removing links to current pages [closed]

Okay, I give up. How do you remove links to current pages from the navigation bar in Wordpress? For example, I don’t want to see the Home navigation link on Homepage or About Us link on About Us page. ...
-1
votes
1answer
2k views

Add “sub-nav” class to a sub menu parent item

i have a problem. I have an CSS Dropdown Menu. The HTML Code of the is this: <ul id="nav"> <li><a href="#">Home</a></li> <li><a ...