I am trying to link my css file to WordPress through a functions.php file. I am not getting any errors but my page isn't showing up styled at all. Am I missing something?
Here is my code:
<?php
function my_own_styles() {
wp_enqueue_style( 'portfolio_theme', get_template_directory_uri() .
'/css/portfolio.css' );
}
add_action( 'wp_enqueue_scripts', 'my_own_styles()' );
?>