> ## Content Index
> Fetch the complete content index at: https://www.moeox.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Prismatic 代码高亮插件添加全局显示行号
- URL: https://www.moeox.com/prismatic--e4-bb-a3-e7-a0-81-e9-ab-98-e4-ba-ae-e6-8f-92-e4-bb-b6-e6-b7-bb-e5-8a-a0-e5-85-a8-e5-b1-80-e6-98-be-e7-a4-ba-e8-a1-8c-e5-8f-b7/
- Published: 2023-03-01T04:46:42.000Z
- Updated: 2023-03-01T04:46:42.000Z
- Author: asumi233
- Tags: 杂项, #wp, #wp-post, #Import 2026-09-01 23:51

编辑主题的fuction.php添加以下内容：

```php
function tribify_body_class($classes) {
  $classes[] = 'line-numbers';
  return $classes;
}
add_filter('body_class', 'tribify_body_class');
```