What is WordPress Pingback/Trackback?
As a savvy spammer, I know how to get backlinks from WordPress websites to my site. The simplest way is to comment on posts on other wordpress sites , leaving […]
As a savvy spammer, I know how to get backlinks from WordPress websites to my site. The simplest way is to comment on posts on other wordpress sites , leaving […]
You must know a way to check the WordPress version, i.e., login administration dashboard. The version of installed wordpress is shown somewhere on the home page of the administration dashboard. […]
WordPress image attachment is a little complicated thing. In a post that is inserted an image attachment, you can edit some attributes like alt text, height, width of the inserted […]
WordPress xml-rpc calls are nothing but http post requests. The core stuff is building the body for the post request. The body is an xml containing the information such as […]
Whether you use the default WordPress login page(i.e. http://myprogrammingnotes.com/login) or create a custom login form of your own, the back end code will eventually call the core login function wp_signon to […]
Although WordPress provides default user registration mechanism, sometimes we need to add custom fields to the registration form to collect more information from the user. Here we give a design […]
WordPress redirection is useful in some situations. For example, wordpress redirects to the dashboard after login, and the WordPress logout redirect occurs when the use logs out, which takes the […]
If you visit a wordpress page such as http://myprogrammingnotes.com/sample-page, we know that after wordpress gets the content of the page from the database table wp-posts, it will load a page […]
WordPress sites often have a search box on the navbar or sidebar. Type some words in it and press enter, you will get some posts displayed on the search results […]
The content of the posts you compose will go through a series of filtering functions before it is presented to the client. The filter tag is “the_content”. One of the […]