New answers tagged include
2
is_plugin_active() expects just the base name of the plugin as parameter:
So use:
is_plugin_active( 'woocommerce/woocommerce.php' );
The function will use the option 'active_plugins' which is a list of plugins paths relative to the plugin directory already.
On a multi-site installation it will search in get_site_option( 'active_sitewide_plugins') too.
...
1
Your script is at /wp-content/themes/responsive-child-theme/nowplaying-example.php but you are including /nowplaying-example.php. That is not going to work. You need to provide the complete path for that include:
include(get_stylesheet_directory().'/nowplaying-example.php');
Assuming I have read that right, and assuming that the files are actually there.
...
1
$args = array(
'post_type' => 'testimonials',
'posts_per_page' => 4,
'orderby' => 'post__in',
'post__in' => array(883, 563, 568, 106);
);
Using post__in within the orderby value it will honour the order of the array of IDs passed in post__in
Top 50 recent answers are included