web-dev-qa-db-ja.com

フィルタを使ってパーマリンクを変更する方法は?

The_permalinkが呼び出されたときに、私のwhileサイト全体でhref属性のURLを変更したいと思います。

例えば:

<h2><a href="<?php the_permalink()?>"

自分のfunctions.phpファイルを使用して、検索を処理し、URLを置き換えるカスタム機能を呼び出すことはできますか

function updateToPerfectURLs($content) {
5
wilsonf1

思ったより簡単です。

function edit_the_permalink($html){
    $html = updateToPerfectURLs($html);
    return $html;
}
add_filter('the_permalink', 'edit_the_permalink');
4
wilsonf1