Hello,

Sign up to join our community!

Welcome Back,

Please sign in to your account!

Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

BashCow Latest Questions

  • 315
  • 315
ttrantow

How To link custom fonts in function.php file

I’m attempting to add custom fonts to my WordPress theme but am encountering a fatal error. i tried to find its solution online but it was no where. Here’s the code I used:

// Register fonts
wp_register_style('font-awesome', get_stylesheet_uri(), [], filemtime(get_template_directory_uri() . '/fonts/font-awesome-webfont.woff'), [], false, 'all');
wp_register_style('Naskh', get_stylesheet_uri(), [], filemtime(get_template_directory_uri() . '/fonts/naskh-webfont.woff'), [], false, 'all');
wp_register_style('Roboto', get_stylesheet_uri(), [], filemtime(get_template_directory_uri() . '/fonts/roboto-webfont.woff'), [], false, 'all');

// Enqueue fonts
wp_enqueue_style('font-awesome-webfont.woff');
wp_enqueue_style('naskh-webfont.woff');
wp_enqueue_style('roboto-webfont.woff');

In Css:

--arabic-fonts: src('\\fonts\\naskh-webfont.woff');
--english-fonts: src('\\fonts\\roboto-webfont.woff');

[dir="rtl"] .container { font-family: var(--arabic-fonts); }
[dir="ltr"] .container { font-family: var(--english-fonts); }

Can someone help me fix this issue? I searched online but couldn’t find a solution. Thank you.

Related Questions

1 Answer

  1. When you use a term like filemtime without the $ sign, PHP interprets it as a constant, which needs to be defined first. The fourth argument of the wp_register_style function sets the version of your script. You can set it to false (the default) or define a constant first. For example, at the top of your file: define('VERSION', '1.0.0'); After that: wp_register_style('Naskh', get_stylesheet_uri(), [], VERSION, get_template_directory_uri() . '/fonts/naskh-webfont.woff', [], false, 'all'); This ensures that 'filemtime' is treated correctly.

    When you use a term like filemtime without the $ sign, PHP interprets it as a constant, which needs to be defined first. The fourth argument of the wp_register_style function sets the version of your script.

    You can set it to false (the default) or define a constant first. For example, at the top of your file:

    define('VERSION', '1.0.0');
    
    After that:
    
    wp_register_style('Naskh', get_stylesheet_uri(), [], VERSION, get_template_directory_uri() . '/fonts/naskh-webfont.woff', [], false, 'all');

    This ensures that ‘filemtime’ is treated correctly.

    See less
Leave an answer

Leave an answer