Settings->Reading] interface in the manner of [Link|Title] All friendly links are enough."/> Settings->Reading] interface in the manner of [Link|Title] All friendly links are enough.">
search
HomeCMS TutorialWordPressHow to quickly add friendly links function in WordPress

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:

<?php
/*
Plugin Name: WPJAM Blogroll
Description: 快速添加友情链接
Version: 0.1
Author: Denis
*/
add_action(&#39;admin_init&#39;, &#39;wpjam_blogroll_settings_api_init&#39;);
function wpjam_blogroll_settings_api_init() {
add_settings_field(&#39;wpjam_blogroll_setting&#39;, &#39;友情链接&#39;, &#39;wpjam_blogroll_setting_callback_function&#39;, &#39;reading&#39;);
register_setting(&#39;reading&#39;,&#39;wpjam_blogroll_setting&#39;);
}
function wpjam_blogroll_setting_callback_function() {
echo &#39;<textarea name="wpjam_blogroll_setting" rows="10" cols="50" id="wpjam_blogroll_setting" class="large-text code">&#39; . get_option(&#39;wpjam_blogroll_setting&#39;) . &#39;</textarea>&#39;;
}
function wpjam_blogroll(){
$wpjam_blogroll_setting = get_option(&#39;wpjam_blogroll_setting&#39;);
if($wpjam_blogroll_setting){
$wpjam_blogrolls = explode("n", $wpjam_blogroll_setting);
foreach ($wpjam_blogrolls as $wpjam_blogroll) {
$wpjam_blogroll = explode("|", $wpjam_blogroll );
echo &#39; | <a href="&#39;.trim($wpjam_blogroll[0]).&#39;" title="&#39;.esc_attr(trim($wpjam_blogroll[1])).&#39;">&#39;.trim($wpjam_blogroll[1]).&#39;</a>&#39;;
}
}
}
?>

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:

<?php
add_action(&#39;admin_init&#39;, &#39;wpjam_blogroll_settings_api_init&#39;);
function wpjam_blogroll_settings_api_init() {
add_settings_field(&#39;wpjam_blogroll_setting&#39;, &#39;友情链接&#39;, &#39;wpjam_blogroll_setting_callback_function&#39;, &#39;reading&#39;);
register_setting(&#39;reading&#39;,&#39;wpjam_blogroll_setting&#39;);
}
function wpjam_blogroll_setting_callback_function() {
echo &#39;<textarea name="wpjam_blogroll_setting" rows="10" cols="50" id="wpjam_blogroll_setting" class="large-text code">&#39; . get_option(&#39;wpjam_blogroll_setting&#39;) . &#39;</textarea>&#39;;
}
function wpjam_blogroll(){
$wpjam_blogroll_setting = get_option(&#39;wpjam_blogroll_setting&#39;);
if($wpjam_blogroll_setting){
$wpjam_blogrolls = explode("n", $wpjam_blogroll_setting);
foreach ($wpjam_blogrolls as $wpjam_blogroll) {
$wpjam_blogroll = explode("|", $wpjam_blogroll );
echo &#39; | <a href="&#39;.trim($wpjam_blogroll[0]).&#39;" title="&#39;.esc_attr(trim($wpjam_blogroll[1])).&#39;">&#39;.trim($wpjam_blogroll[1]).&#39;</a>&#39;;
}
}
}
?>

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!

Statement
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
How easy is it to manage content with WordPress?How easy is it to manage content with WordPress?May 09, 2025 am 12:11 AM

WordPressisuser-friendlyduetoitsintuitiveinterfaceandCMS,whichseparatescontentfromdesign.Itoffersarichtexteditorforeasycontentcreationandamedialibraryfororganization.Itsflexibilityisenhancedbynumerousthemesandplugins,thoughoverusecanimpactperformance

How is WordPress used in business settings?How is WordPress used in business settings?May 08, 2025 am 12:04 AM

WordPressissuitableforbusinesssettings.1)Itsupportse-commercewithpluginslikeWooCommerce,allowingproductmanagementandpaymentprocessing.2)ItservesasaCMSforcorporateblogs,enhancingSEOandengagement.3)Customizationispossiblewithnumerousthemesandplugins.4)

What types of websites are not a good fit for WordPress?What types of websites are not a good fit for WordPress?May 07, 2025 am 12:10 AM

WordPressisnotidealforhigh-trafficwebsites,customandcomplexapplications,security-sensitiveapplications,real-timedataprocessing,andhighlycustomizeduserinterfaces.Forhigh-trafficsites,useNext.jsorcustomsolutions;forcomplexapplications,optforDjangoorRub

Can you build a blog with WordPress?Can you build a blog with WordPress?May 06, 2025 am 12:03 AM

Yes,youcanbuildablogwithWordPress.1)ChoosebetweenWordPress.comforbeginnersorWordPress.orgformorecontrol.2)Selectathemetopersonalizeyourblog'slook.3)Usepluginstoenhancefunctionality,likeSEOandsocialmediaintegration.4)Customizeyourthemewithsimplecodetw

How secure is WordPress as a CMS platform?How secure is WordPress as a CMS platform?May 05, 2025 am 12:01 AM

WordPresscanbesecureifmanagedproperly.1)KeeptheWordPresscoreupdatedtopatchvulnerabilities.2)Vetandupdatepluginsandthemesfromreputablesources.3)Enforcestrongpasswordsandusetwo-factorauthentication.4)Chooseahostingproviderwithgoodsecuritypractices.5)Ed

What kind of websites can you build with WordPress CMS?What kind of websites can you build with WordPress CMS?May 04, 2025 am 12:06 AM

WordPresscanbuildvarioustypesofwebsites:1)Personalblogs,easytosetupwiththemesandplugins.2)Businesswebsites,usingdrag-and-dropbuilders.3)E-commerceplatforms,withWooCommerceforseamlessintegration.4)Communitysites,usingBuddyPressorbbPress.5)Educationalp

What are the pros and cons of using WordPress as your CMS?What are the pros and cons of using WordPress as your CMS?May 03, 2025 am 12:09 AM

WordPressisapowerfulCMSwithsignificantadvantagesandchallenges.1)It'suser-friendlyandcustomizable,idealforbeginners.2)Itsflexibilitycanleadtositebloatandsecurityissuesifnotmanagedproperly.3)Regularupdatesandperformanceoptimizationsarenecessarytomainta

How does WordPress compare to other popular CMS platforms?How does WordPress compare to other popular CMS platforms?May 02, 2025 am 12:18 AM

WordPressexcelsineaseofuseandadaptability,makingitidealforbeginnersandsmalltomedium-sizedbusinesses.1)EaseofUse:WordPressisuser-friendly.2)Security:Drupalleadswithstrongsecurityfeatures.3)Performance:GhostoffersexcellentperformanceduetoNode.js.4)Scal

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software