Moving a wordpress.org website to another domain name?

Here is my solution. First download this file. Then follow these steps. In shortly Backup/download your database. Upload it to your new site. Copy all wordpress folder including wp-admin,wp-content etc from your old site to new one. Edit the downloaded php file, change the password. you need to change the password in this line. define(‘DDWPDC_PASSWORD’, … Read more

Add the title attribute to links

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

Do you use links?

Links are not supposed to be bookmarks, they are more of a convenient way to integrate links in site. The feature is kinda underused (I think blogrolls it single most common usage for it and seems to start to fade) and so under-appreciated. Really there are plenty of stuff you can do with links, for … Read more

Change description of my Jetpack facebook shared links [closed]

This part comes from the function comment_form() which is called by your theme, probably in comments.php: ‘comment_notes_after’ => ‘<p class=”form-allowed-tags”>’ . sprintf( __( ‘You may use these <abbr title=”HyperText Markup Language”>HTML</abbr> tags and attributes: %s’ ), ‘ <code>’ . allowed_tags() . ‘</code>’ ) . ‘</p>’, You can filter it out with a simple plugin: <?php … Read more

link to single most recent post, regardless of category

This code uses snippet from @Milo to suit your requirement. Replace the code you’ve provided in question with this – <li> <h2><a href=”http://growingedgecoaching.com/blog”>Growing Edge Blog</a></h2> <?php $latest = new WP_Query( array( ‘posts_per_page’ => 1 ) ); while( $latest->have_posts() ) : $latest->the_post(); ?> <h2><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> <div class=”forward-link”> <a href=”<?php … Read more

How do I hide the ‘Edit’ link in publshed posts

Edit links only shown to those who are logged in and has post editing capability. Seems you’re logged in as an admin. Readers cannot edit your post unless the reader is logged in and has post editing capability. Adding the edit link to the post is a theme specific feature. Usually, theme author implements this … Read more

How to link to local post

Use the ugly link instead of the pretty link. For example, if your post id is 123, you can link to http://www.yoursite.com/?p=123. This will automatically get rewritten to your current pretty permalink. If you do it relative from the root, it also keeps the link intact if you change your domain name. (ex. href=”https://wordpress.stackexchange.com/?p=123″). To … Read more