基本上是共享服务中的it线480。PHP上面写着:
return $text.$sharing_content;
应该是这样的
return $sharing_content.$text;
现在更改该文件不会使您的更改保持更新状态,因此您可以将该函数(sharing\\u display)复制到您的函数中。php并将其重命名为其他名称,比如
my_sharing_display
然后在那里进行更改。
接下来,您需要删除插件添加的过滤器,并在函数中替换为您自己的so。php添加:
//remove old
remove_filter( \'the_content\', \'sharing_display\');
remove_filter( \'the_excerpt\', \'sharing_display\');
//add new
add_filter( \'the_content\', \'my_sharing_display\', 19 );
add_filter( \'the_excerpt\', \'my_sharing_display\', 19 );
更新remove\\u过滤器挂钩实际上没有删除,因为它缺少codex中的优先级参数:
重要提示:要删除挂钩,添加挂钩时,$function\\u To\\u remove和$priority参数必须匹配。这适用于过滤器和操作。移除失败时不会发出警告。
so更改:
remove_filter( \'the_content\', \'sharing_display\');
remove_filter( \'the_excerpt\', \'sharing_display\');
收件人:
remove_filter( \'the_content\', \'sharing_display\',19);
remove_filter( \'the_excerpt\', \'sharing_display\',19);