C. Smith
C. Smith

Reputation: 77

Wordpress get_option print

Hello how can i print in php the function get_option('item')

For example like this, but doesn't works

<?php  include '_includes/items/item_1.php';?>

instead of item_1 to put get_option('item')

Any ideea?

Upvotes: 1

Views: 137

Answers (2)

Jakir Hossain
Jakir Hossain

Reputation: 2517

See code below.

include '_includes/items/'.get_option('item').'.php';

Upvotes: 1

synan54
synan54

Reputation: 658

<?php  include '_includes/items/'.get_option('item');?>

Upvotes: 2

Related Questions