The links tag has no wiki summary.
1
vote
1answer
125 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?
1
vote
0answers
380 views
Password reset link not working [closed]
For some reason, my password reset link on one of my sites is no longer working...it redirects to a 404 page.
It's URL /login?action=lostpassword is not working...any ideas on how to fix this?
...
1
vote
0answers
99 views
RSS feed is empty [closed]
is anybody know about this issue?
I have implemented RSS feed in functions.php file for two custom post types:
function myfeed_request($qv) {
if (isset($qv['feed']) && ...
1
vote
2answers
100 views
Get link to a specific template file [closed]
I was planning on creating a custom "Archives" template to create a detailed Archives page for my blog, including lists of posts by category, tag, date and author. Rather than use a static link ...
1
vote
1answer
445 views
Can't filter wp_get_attachment_link
Can't figure out why this won't work:
function my_get_attachment_link($html){
$postid = get_the_ID();
$html = str_replace('<a','<a rel="shadowbox['.$postid.']"',$html);
return ...
0
votes
2answers
340 views
How to link to local post
I am creating a post and would like to link to other post on my blog. What is the best way to do this? I don't want to hard link in case I update the post title. Is there a way to do this?
0
votes
1answer
262 views
How do I make my navigation bar link to an external page?
My website is wordswithfriends.net
At the moment all of the top navigation menus link to an internal page. I want "Contact Us" to link to an external page ask.wordswithfriends.net
How do I do this ...
0
votes
2answers
70 views
How to display page title+link of page created by user
I want to check if user is logged in and if have created a page. If so, option 1 is shown. This all works fine.
But how to display page title+link of page created by that user between {page title ...
0
votes
2answers
826 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
3answers
686 views
How to splice in wp_links links into the loop?
I want to create a loop where 2 or 3 items from my blogroll are spliced in like this:
<loop>
<post1>
<post2>
<blogroll1>
<post3>
<blogroll3> ...
0
votes
2answers
149 views
link to single most recent post, regardless of category
I have a landing page that, among other things, features an excerpt from the most recent post with a "Continue Reading" link that should take the reader to the most recent post.
In my search, I've ...
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
802 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?
0
votes
1answer
503 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 ...
0
votes
1answer
174 views
Clean links in: the_author_meta('description')
I need to clean any links returned from the_author_meta('description')
The code I use is simply that:
<p><?php the_author_meta('description'); ?></p>
I Searched old question but ...
0
votes
1answer
165 views
Do you use links?
DO you use links in your wordpress and why? Isn't it much easier to use you browser's bookmarks? I don't get the idea of having links at all!
Please enlight me!
0
votes
1answer
247 views
Conditional Display of Links in Widgets
I want the links widget in my sidebar to display links based on the page the user is on. For example, if the user is on the home page I want it to display link1, link2 and link3. But if the user goes ...
0
votes
1answer
36 views
Adding a user's ID behind the <a> tag ref link address
Good day, everyone:
I want to make wordpress to add the user's id number behind the ref's link string, so that, for example
<div class="toolsbutton">
<a ...
0
votes
1answer
112 views
how to show Author information in search results
Google search result does not show author information or thumbnail images.
the source code look like this
<link rel="author" href="https://plus.google.com/115911773396772351667/posts"/>
...
0
votes
2answers
76 views
Moving a wordpress.org website to another domain name?
I currently have a wordpress.org website on a server with a specific domain name. I would like to move it all to a server with another domain name as I have changed my company name.
What is the best ...
0
votes
1answer
82 views
Setting a page link in the footer?
What is the proper process for setting a page up with a link to it in the footer?
Currently, all my pages are in Appearance -> Menu...and of course displayed in the main menu.
However I want a batch ...
0
votes
2answers
172 views
trouble with page_id & highlighting current page
I'm using the below code to highlight the page name/gallery shown when the corresponding link is clicked on. My challenge is that regardless of what link I click, only the very first ...
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?
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" ...
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, ...
0
votes
2answers
113 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
391 views
get_category_link() is returning nothing
<?php
$categories=get_categories('taxonomy=galeriak');
foreach ($categories as $category) {
?>
<li><a href="<?php echo get_category_link( $category->term_id ) ?>" ...
0
votes
1answer
500 views
Is there an easy way to create a links index page?
Essentially I want this...
http://oldtimemusic.com/otlinks.html
I want to have an index of letters each pointing to a page with links for that letter along with a description.
I'm wondering if ...
0
votes
2answers
257 views
Get paged category link programmatically
I want to get the link to a category (specified by id) but with a paged value (e.g. page 3 of category id 4).
I was looking into get_category_link()Codex, but it only returns the link to the first ...
0
votes
1answer
280 views
How do I make Wordpress “Page” link in the top nav bar go to an external URL?
I would like the Wordpress page link as shown here go to an external URL instead of going to page. What is the best way to set this up? I'm running Wordpress
3.1.3. Thank you.
0
votes
1answer
1k views
How to get category/tag in URL for Pagination links?
I have a custom pagination function in functions.php. If I'm at the URL: http://mysite.com/tag/dogs, the Next link currently just contains /page/2.
How can I make it so it will look like ...
0
votes
1answer
83 views
Trouble getting the Blog page to show up correctly
I'm having a completely new problem and can't figure it out so I'm hoping someone can help me.
The website is http://www.talkingdogtemplates.com. It's a big site that uses WordPress as a CMS ...
0
votes
2answers
363 views
A plugin for having rel=“nofollow” in posts?
I'd like to make all the links in posts on one of my sites to be with rel="nofollow" on links inside posts. I wasn't able to find a plugin that did the job except for WP-NoExternalLinks. It also ...
0
votes
1answer
188 views
Remove a href from this code
I am using a short piece of code(which is modified, originally it was a plugin-Taxonomy Terms List) to display custom taxonomies after the post,
When the terms are displayed, it is displayed with a ...
0
votes
5answers
788 views
Is there any way of changing the post order via user click?
Is there any way of changing the post order, posts number, etc via user click?
The same way you can choose displaying questions by time and vote here at StackExchange.
How to accomplish that?
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 ...
0
votes
1answer
171 views
How would I add a link to the profile editing page of the dashboard?
Our passwords are handled by an external LDAP server and the plugin we're using to therefore removes all references to the ability to change passwords.
What I'd like to do then, is add a link to the ...
0
votes
1answer
14 views
Links In Sidebar not displaying
Ive placed a link in the sidebar, however its not showing up at all!
Any ideas? The link is the blackburn text in the post.
http://pcdconsultancy.co.uk/
thanks
Kirsty
0
votes
1answer
20 views
Get Link to Feed On Term or Taxonomy
Instead of building the link myself, I was wondering if wordpress has a function which generates a link to a given feed, be it a taxonomy, term, or post type. Perhaps it might even generate the little ...
0
votes
1answer
28 views
How to auto strip hyperlinks & images in wordpress post
I creat a post form on front-end for wordpress members by use DJD Site Post plugin.
Plugin url: http://wordpress.org/extend/plugins/djd-site-post/
And now i want to auto strip all hyperlink & ...
0
votes
1answer
26 views
Display category page number links for older posts
I was given a task to move the content and certain familiar navigation elements from an old WP-based website to the new one, based on the latest version of WP.
The blog page of the old site has the ...
0
votes
1answer
27 views
Automaticly replace a link with other “new link”
I want "a link" in my content "automaticly" replace with "new link"
Heres the explanation, in my all post content I want a link of www.lol.com/?http:/rapidshare.com automaticly replace with new link ...
0
votes
1answer
43 views
Disable title link in the backend for non-admins
I need to make posts not editable by non-admins in the backend, is there a way to disable the link in the title of the posts when they view the list of post published?
Thanks!
0
votes
1answer
96 views
Adding a text link under the post title in the lists of posts
I made a lot of changes to my WP settings and now, when I approve and publish pending posts, authors have one hour to modify their articles.
After the hour has gone the edit link disappear and they ...
0
votes
1answer
155 views
Blogroll/Lins Menu not visible in my backend?
well, i'm confused. I can't seem to find out why my "Links" Menu doesn't show up in my wordpress admin.
I have this in my functions.php file …
add_action( 'admin_menu', 'remove_links_menu' );
...
0
votes
1answer
33 views
Change Rating range in Link Manager
I have looked in here and across the internet but I can not seem to find an answer.
Is there a way to change the values of the ratings. By Default it seems to be 0 to 10, but I can not find a way to ...
0
votes
1answer
69 views
Main menu navigation links and new pages
Sorry i'm pretty new on wp, i would like to add new menu links and site pages, to the main top menu bar.
I'm using a third parties template, and i see the top.php file which contains the top menu ...
0
votes
2answers
82 views
Linking to page with all posts
I'm new to the Wordpress world. I've read the template hierarchy document and read online, but, I wanted to get feedback from here on what the best way to do this would be.
What I'm trying to do is ...
0
votes
2answers
86 views
Authors' Links on Homepage Not Going to Author Post Pages
This problem only occurs with the articles/blog posts on the homepage of the site, readbuzz.com.
On the homepage of the site, the author's name is supposed to link to that particular author's post ...
0
votes
2answers
36 views
Short link to read complete post
I am just a newbie to the WordPress. I was just going through the demo sites and I found a website. Here you can see there are couple of posts in a home page and just below the every post there is a ...