cannot link a external url, present page url acting as parent url
When adding an external link you need to include HTTP:// or HTTPS:// at the start of the URL to link to an external domain. Otherwise the link will be added onto the current domain.
When adding an external link you need to include HTTP:// or HTTPS:// at the start of the URL to link to an external domain. Otherwise the link will be added onto the current domain.
Using JS is not really the best possible solution as it can be disabled on client side. You can also use PHP like regular expressions and DOM to alter the links, but I really think the most reliable way to achive this is to rebuild the list throught the term_link-post_tag filter which is located inside … Read more
Turns out you are not the only one: https://core.trac.wordpress.org/ticket/32095 It looks like this was removed in a recent update (4.2) and I can see why they did it. User interface can be confusing at times. You can read more about the removal here: http://wptavern.com/how-to-restore-the-link-title-attribute-removed-in-wordpress-4-2 There is a WordPress plugin, however, that seems to add it … Read more
You are missing quotation marks, closing tags, almost everything: <div class=”account_links”> <?php if ( is_user_logged_in() ) { echo ‘<a href=”https://wordpress.stackexchange.com/my-account/” title=”My Account Page”>MY ACCOUNT</a> <span> | </span> <a href=”http://wordpress.stackexchange.com/my-account/customer-logout/”>LOGOUT</a>’; } else { echo ‘<a href=”https://wordpress.stackexchange.com/my-account/” title=”Login Page”>LOGIN</a> <span> | </span> <a href=”http://wordpress.stackexchange.com/my-account” title=”Create an Account”>REGISTER</a>’; } ?> </div> that should do it.
I agree with @Milo it would be easiest to do it by having the Services Page as your top level page (parent) and then declare other pages as the Services pages’ children. You can do this on the page editing area in the WP admin area. Try not to mess with the permalinks as that … Read more
There’s a space after the word “shapely”. You must remove that, spaces and special characters are encoded when used in URL’s. Most probably this space is in the directory name, rename it and it will solve the problem
It seems from your example that the key parts of the URL structure are staying the same. 2016/5/document.pdf That means you could use a plugin like ‘Better Search Replace’ (https://en-gb.wordpress.org/plugins/better-search-replace/). Simply choose to replace: www.example.com/files/ with www.example.com/wp-content/uploads/sites/#/
The problem is in this part <?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class=”entry-summary”> <div class=”entry”> <?php $content = get_the_content(); $content = strip_tags($content); echo ‘<p>’ . substr($content, 0, 255) . ‘ […] </p>’; ?> <hr class=”post-divider”/> </div> </div> <?php else : ?> You need to add a link … Read more
Your URL querystring is malformed. ? good before the first variable. & goes before any others. Your url should be http://mysite/login?user_id=6&category=3
To get the canonical (not ?page=1) reference URL to start the pagination from you have to change ‘base’ => ‘%_%’ to ‘base’ => get_pagenum_link() . ‘%_%’ // get_pagenum_link() default is ‘1’ which will give you the first page of paginated posts and %_% will be replaced by ‘format’ parameter on the next pages.