#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('admin_init', 'wpjam_blogroll_settings_api_init'); function wpjam_blogroll_settings_api_init() { add_settings_field('wpjam_blogroll_setting', '友情链接', 'wpjam_blogroll_setting_callback_function', 'reading'); register_setting('reading','wpjam_blogroll_setting'); } function wpjam_blogroll_setting_callback_function() { echo '<textarea name="wpjam_blogroll_setting" rows="10" cols="50" id="wpjam_blogroll_setting" class="large-text code">' . get_option('wpjam_blogroll_setting') . '</textarea>'; } 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 ' | <a href="'.trim($wpjam_blogroll[0]).'" title="'.esc_attr(trim($wpjam_blogroll[1])).'">'.trim($wpjam_blogroll[1]).'</a>'; } } } ?>
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('admin_init', 'wpjam_blogroll_settings_api_init'); function wpjam_blogroll_settings_api_init() { add_settings_field('wpjam_blogroll_setting', '友情链接', 'wpjam_blogroll_setting_callback_function', 'reading'); register_setting('reading','wpjam_blogroll_setting'); } function wpjam_blogroll_setting_callback_function() { echo '<textarea name="wpjam_blogroll_setting" rows="10" cols="50" id="wpjam_blogroll_setting" class="large-text code">' . get_option('wpjam_blogroll_setting') . '</textarea>'; } 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 ' | <a href="'.trim($wpjam_blogroll[0]).'" title="'.esc_attr(trim($wpjam_blogroll[1])).'">'.trim($wpjam_blogroll[1]).'</a>'; } } } ?>
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!