I’m a software engineer with a WordPress site with hundreds of pages, and it’s working very well. There are certain cases, however, where I’d love to be able to...
I want something like this Home > Products > Steel > Nails This information should come from the menu structure! I installed Breadcrumb NavXT but it seems that it...
Currently my plugins are getting uploaded to public_html/sitename/wp-content/plugins instead of public_html/wp-content/plugins. Is there any way that I can change the path where word press uploads the plugins? I had...
Warning: fairly pedantic request ahead. I have a design that makes use of posts (I.e., the blog) and a custom post type called “howto”. The site front page (“https://wordpress.stackexchange.com/”)...
I’m using mac os x 10.6 with xampp. http://wp3.1/ is the url to where I have WordPress installed. The physical path is /Users/myUserName/Sites/wp3.1/ I do not install plugins or...
I am in the process of moving a WP site from one host to another. I copied the database and all the files, created a new database and imported...
I need to include the path to my theme file within a javascript file. How would I go about this? I have already tried: var templateUrl = "<?php get_stylesheet_directory_uri();...
What’s the difference between get_home_path() and ABSPATH? Isn’t the point of both to point to the WordPress install root? 2 They should do the same thing, but under certain...
This code is used to get the directory of the current plugin: plugin_dir_url( __FILE__ ). What should I use to get the directory of the current theme? 2 I...