Settings->Reading] interface in the manner of [Link|Title] All friendly links are enough."> How to quickly add friendly links function in WordPress-WordPress-php.cn
Home> CMS Tutorial> WordPress> body text

How to quickly add friendly links function in WordPress

藏色散人
Release: 2019-12-04 09:21:31
Original
2692 people have browsed it

How to quickly add friendly links function in WordPress

#How to quickly add friend link function in WordPress?

The example in this article describes how to quickly add the friendly link function in WordPress. Share it with everyone for your reference. The specific method is analyzed as follows:

Recommendation: "WordPress Tutorial"

The WordPress system does not have the friendly link function by default, for the betterment of the website For optimization, we need to add a friendly link function to it. Now I will share with you my specific method of adding friendly links in WordPress.

WordPress has been hidden in 3.5, we can quickly achieve it through the following code Add friendly links, the example code is as follows:

The code is as follows:

' . get_option('wpjam_blogroll_setting') . ''; } function wpjam_blogroll(){ $wpjam_blogroll_setting = get_option('wpjam_blogroll_setting'); if($wpjam_blogroll_setting){ $wpjam_blogrolls = explode("n", $wpjam_blogroll_setting); foreach ($wpjam_blogrolls as $wpjam_blogroll) { $wpjam_blogroll = explode("|", $wpjam_blogroll ); echo ' | '.trim($wpjam_blogroll[1]).''; } } } ?>
Copy after login

First copy the above code to the functions.php file of the current theme, or activate it as a separate plug-in, and then you can In the WordPress backend>Settings>Reading interface, there is an input box for adding friendly links. Enter all friendly links in the form of link|title.

Method 2: Add the following code to the current theme functions.php file, or save it as a separate php file, upload it to the plug-in directory to activate, the code is as follows:

The code is as follows:

' . get_option('wpjam_blogroll_setting') . ''; } function wpjam_blogroll(){ $wpjam_blogroll_setting = get_option('wpjam_blogroll_setting'); if($wpjam_blogroll_setting){ $wpjam_blogrolls = explode("n", $wpjam_blogroll_setting); foreach ($wpjam_blogrolls as $wpjam_blogroll) { $wpjam_blogroll = explode("|", $wpjam_blogroll ); echo ' | '.trim($wpjam_blogroll[1]).''; } } } ?>
Copy after login

Then you can go to WordPress backend> Settings> ; In the reading interface, there is an input box for adding friendly links. Enter all the friendly links in the form of link|title.

Finally, use the following code at the appropriate location of the template file where the friendly links need to be displayed. Call:

Copy the code The code is as follows:

I hope this article will be helpful to everyone WordPress website building helps.

The above is the detailed content of How to quickly add friendly links function in WordPress. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!