The urls tag has no wiki summary.
0
votes
2answers
106 views
WP Nav menu append to url
Using wp_nav_menu() , how can I append a value at end of each URL?
For example, I have the following url: http://www.example.com/ but I have to append a language parameter at the end, so the url ...
0
votes
1answer
51 views
Organizing the Navigation Menu
I have a problem with menu organization. I have a Pages with url "pressroom" and have a Category with the same name. I want to make it a one menu item.
Pressroom (sitename.com/pressroom/)
page 1 ...
0
votes
2answers
49 views
Is Wordpress API visible from PHP file called in htaccess
I'm trying to add some rewriterules in the .htaccess file to deal with hotlinked images - specifically I want to add the URL from the post where the image appeared to the header location information ...
0
votes
2answers
216 views
Add menu and submenu in admin with a URL instead of slug?
I use this function and hook:
function mysite_admin_menu()
{
add_menu_page( 'Categories', 'Catégories', 'administrator', 'categories', 'a_function' );
add_submenu_page( 'categories', 'Manage', ...
0
votes
1answer
43 views
How to show the homepage on a different url, like site.com/blog instead of site.com?
I have Wordpress installed in my root directory, so if you go to site.com you see the list of recent posts.
What I want to do is to have the homepage show a static page instead showing recent news ...
0
votes
1answer
112 views
How can I do a url redirect to include a wordpress username?
I currently have a button like this, that takes a user to their 'mentions' page
<a href="http://my.url.org/mentions/<?php global $userdata;
get_currentuserinfo(); echo( $userdata->user_login ...
0
votes
2answers
190 views
What can I replace '.get_bloginfo('url').' with to return the current URL rather than the home address?
I am using the Any Mobile Theme Switcher plugin to switch between full and mobile themes automatically.
The only problem with it is that the 'switch to mobile site' and 'switch to full site' links ...
0
votes
1answer
60 views
Nicer URL for viewing category of posts?
At the moment to view a category of posts I have a url like
http://server/category/tag
Is there a way in wordpress I can do this as:
http://server/tag
0
votes
1answer
64 views
How to get CGI variables?
I need to do two things:
Add a CGI variable (say filter=21) to the current query and make a link to this modified URL.
Fetch the value of CGI variable "filter".
How to do that in WordPress?
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
2answers
57 views
How can I identify which file/function will be used to respond to a particular URL?
I'm a Drupalista who occasionally works in WordPress so this might be obvious :) I was helping a colleague debug some AJAX behaviour, and having got the URL of the callback from Firebug, I wasn't sure ...
0
votes
1answer
316 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
365 views
How to display content from external db with relevant urls
I am working on a website that needs to display information about electronic resources which is stored in an external database. This information will be presented three different ways (alphabetical ...
0
votes
1answer
215 views
How does: /index.php?post_type=event&event-date=2011-07-25 work? What if it doesn't work?
I have an events cpt with a slug "event" I am using it in several places but I am trying to create a "day" view that shows all the events for a given day. I also have the archive arg set in the CPT ...
0
votes
1answer
49 views
Can I use %category% like Templates in my Plugin?
I have seen that Wordpress uses %category% like strings to create url templates. Is there an easy way to allow such mechanism in a plugin? For example in the plugin's settings page user specifies an ...
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
815 views
Posts URL structure like site.com/category/the-post-title
I'm new with wordpress and I would like to understand better if it's possible to create pages with an url based on the category and then the post title, so:
something like ...
0
votes
1answer
929 views
Moved WP into new folder. How to fix image links in posts?
I moved from Wordpress.com to my own Wordpress.org hosting.
I had no problems importing all my posts over, and the images were all linked up fine.
Since the import, I decided to move my WP install ...
0
votes
1answer
1k views
can I chage url for register_post_type
I registered custom post type by register_post_type('new_post',$args); So new post url looks like `http://myweb.com/new_post/post_name
Can I change _later_ the part of url from new_post to something ...
0
votes
2answers
162 views
What is the best way to figure out which template file that a “pretty permalink” is using?
I'm new at wordpress, so maybe this question is very basic, but I looked at Google and I searched for tutorials and I didn't find anything...
The question is simple. I have a "page", and this page is ...
0
votes
2answers
819 views
Make insterted image point to post url instead of attachment page
I am inserting an image in a post and I want it to point to the post detail page, not the attachment.
What should I do?
Thanks in advance.
0
votes
2answers
32 views
Enabling canonical links to force search engines to go to site.com rather than site.net
I want visitors who have typed site.com, stay on site.com and visitors who have come to site.net, stay at site.net (They have one host and site.net has been parked on .com).
When it comes to search ...
0
votes
2answers
18 views
Access posts while mod_rewrite is broken
On my wordpress installation mod_rewrite (e.g. the permalinks) is temporarily broken. For debugging I want to access the formerly "prettified" page mydomain.tld/page/2. What is the old GET parameter ...
0
votes
1answer
8 views
How to parse a custom url (within WP site) and obtain params passed to that URL
In my WP site-- eg. http://www.mydomain.com-- a request has to be passed to a custom URL-- http://www.mydomain.com/custompage?param1=abc¶m2=def
Now, I wish to obtain the parameters passed to ...
0
votes
1answer
40 views
Get logged in username in wordpress url
I want to get the username of the logged in users in the URL of my wordpress site. Like if user: arvind is logged in, I want to get the url as 'www.wp.com/arvind' or 'www.wp.com?user=arvind'.
Is ...
0
votes
1answer
46 views
Author Nickname URL Friendly
Using the below code to chnage the author page url to use the "nickname". Works ok but when the nickname is more than one word it doesnt make it url friendly. Any way to do this?
add_filter( ...
0
votes
1answer
33 views
Prevent Wordpress from automatically correcting URLs
I notice that if I type in http://www.example.com/pag I can land on an existing page that has a name like http://www.example.com/page_five. I don't know exactly what causes this, but I want to know if ...
0
votes
1answer
26 views
home_url(); showing current page instead of site address
Does anyone have an idea why my home_url() function gets the URL of the current page instead of the site address? (The site runs locally using MAMP.)
0
votes
1answer
19 views
Redirect Old wordpress url to new wordpress url
What we did was delete a category to smooth out some confusion. The old url was: http://uafnews.com/headlines/my-permalink but now it is http://uafnews.com/my-permalink. How could I have people who ...
0
votes
1answer
31 views
Using variable to display a page with a different stylesheet
Is it possible to implement a different stylesheet for a page using a url variable, for example
Normal URL: www.example.com/page
Would use the normal stylesheet
Alternative URL: ...
0
votes
2answers
48 views
wordpress url correction
I have my wordpress site in a root folder like this "www.mysite/myblog/"
so to get to the blog you have to go to "www.mysite/myblog/"
I'm wanting to make it so that a user can go to "www.mysite" and ...
0
votes
1answer
98 views
Website Address Keep redirect to website after migration attempt
I have a loclhost site that I heard I can migrate the site by just copy and paste the whole site from local to host if I changed WordPress Address (URL) and Site Address (URL) to my current hosted ...
0
votes
1answer
54 views
URL problem: www.sitename.com/blog and www.sitename.com/learn using same WP installation
I'm sure there has to be some way to make this with single wordpress instalation. Posts for "learn" page are tagged with "learn" and I built a custom template that has loop that prints only posts from ...
0
votes
1answer
97 views
Tricky URL rewrite with custom values in url
We have custom post type as user_images and each of these post has a image attached with image name is 3 digit number followed by extension.
When the url
http://mysite.com/wp_username/3digitnumber
...
0
votes
2answers
36 views
How i can get the URL?
How i can get the base URL in the wordpress? get_bloginfo('url') returns me the current URL. I just want the base URL e.g http://localhost/wpsite/ not any ?page_id=123 with it
0
votes
1answer
314 views
How to call images from your plugins image folder?
I've done a lot of research and learned a lot about WP constants and function usage for getting image paths etc. but still my original problem persists.
<img src="<?PHP echo WP_PLUGIN_DIR . ...
0
votes
1answer
80 views
Extracting a variable from a permalink
I used the "Edit Author Slug" plugin to change the author base to /newbase .
In the functions.php file, I added a new node to the toolbar (View Profile) that when clicked points to ../newbase/johndoe ...
0
votes
2answers
428 views
hijacking home_url for root relative paths
I'd been having trouble with the full domain name being written into the path of links and assets. Basically localhost:XXXX works fine, until I try to reach my site from a Virtual Box install of XP or ...
0
votes
2answers
271 views
custom wordpress rewrite
I am trying custom rewrite for following url...
http://www.domain.com/lp/1
and it would be parsed using
lp.php?p=1
I have tried following...
add_action( 'init', 'aagt_rewrite_add_rewrites' );
...
0
votes
1answer
374 views
How do I get the author's page url from their ID?
What is the best way to get the author's page url, so http://example.com/author/user73, from their ID number?
0
votes
1answer
42 views
Hook for feed creation?
I'm looking to create a function which would be called when the blog's /feed/?args... URL is requested. I've been looking at the_content_feed, would that be correct?
Also, how would I get the args in ...
0
votes
1answer
145 views
Bizarre Permalinks Issue: 404 Errors Everywhere
First and foremost, this is definitely a duplicate of the age old question of "my Wordpress permalinks are generating 404 errors", but in a way it's different because no solutions I've tried have ...
0
votes
1answer
35 views
Make custom system url
Let's say my site is example.com
I want to create example.com/portfolio without creating a page.
I just want to execute some PHP code and display a bit of HTML.
Is there any way to create "sytem ...
0
votes
2answers
56 views
After changing the site root, how to reflect this for wp-admin too?
My website file structure is like this:
index.php
wp/wp files ...
In general in Site Address (URL) I have ...site.com
In index.php I have:
define('WP_USE_THEMES', true);
...
0
votes
1answer
118 views
How to get the theme directory URI?
I want to get the theme root URL with PHP. What would be the best way to do that?
There is a function called get_theme_root() which gives me the path but not the URL.
Maybe just get the current ...
0
votes
1answer
456 views
Problem with parent page slug only in WordPress admin
I am using the permalink structure:
/%category%/%postname%/ in order to show my blog posts under their category in my url.
I have also installed WordPress SEO by yoast (if that helps) but I noticed ...
0
votes
3answers
192 views
Can Permalink structure of %postname%/%post_id% improve performance
Since the post_id is unique and no full text search is needed.
So is the structure %postname%/%post_id% really improve performance?
0
votes
1answer
106 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
55 views
How can I prepopulate the URL address for the add media button
I was wondering if there is a way to get the URL address to prepopulate with my web address so I don't have to type it in every time I want to insert an image.
Example.
Click on the upload/insert ...
0
votes
1answer
195 views
WordPress and $_GET Params
This is an odd problem that I have never run into before with WordPress.
I have a site, permalinks enabled.
The url can be http://mysite.com/page-name/?anyParamName=testing
then when I use ...