Mstoic Themes
Forum Replies Created
-
Hello. The Blog is Mstoic
- This reply was modified 8 years ago by Mstoic Themes. Reason: The link was incorrect
I am also getting multiple critical errors.
Error:
The attribute 'trbidi' may not appear in tag 'div'.
Yes please. I need to exclude my CPT, which I am not able to.
Forum: Plugins
In reply to: [W3 Total Cache] Error 403 Forbidden using Disk:Enhanced Page CacheI am also getting 403 forbidden errors when the plugin is activated.
Forum: Fixing WordPress
In reply to: Run WP_Query Within a LoopSolved Myself:
$arr = array (
array (‘category_name’ => ‘youtube’, ‘posts_per_page’ => ‘4’),
array (‘category_name’ => ‘Google’, ‘posts_per_page’ => ‘3’),
array (‘category_name’ => ‘Dropbox’, ‘posts_per_page’ => ‘2’),
array (‘category_name’ => ‘Windows’, ‘posts_per_page’ => ‘1’)
);foreach ($arr as $args) {
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
echo ‘<p>’ . get_the_title() . ‘</p>’;
//echo ‘<div class=”entry”>’ . get_my_excerpt(50) . ‘</div>’;
endwhile;
echo ‘<hr>’;
wp_reset_postdata();
else: echo ‘<p>’ . _e( ‘Sorry, no posts matched your criteria.’ ) . ‘</p>’;
endif;
}Forum: Plugins
In reply to: [W3 Total Cache] Fatal error: Call to undefined function w3tc_button_link()Having the same problem. Any sure shot solution?
Forum: Alpha/Beta/RC
In reply to: image_default_link_typeGo to https://www.example.com/wp-admin/options.php
where example.com needs to be replaced by your site name. Here you will find all the settings and also the “image_default_size”.
NOTE : Whenever you update or reinstall WordPress your settings will be removed and you will have to redo them.