ahmedNaguib
Forum Replies Created
-
Forum: Plugins
In reply to: Normal post slider?check this plugin :
https://www.ads-software.com/extend/plugins/featured-articles-liteit is just a logical operation
|| returns true if one of the two sides is true
so here is a scenario for you to understand it :if (x!=1 || x != 3)
suppose x = 3
then 3 != 1 || 3 != 3
true || false
so the result is trueI hope this made it clear ??
Forum: Fixing WordPress
In reply to: Ask the Expert – which plug in to use?Have a look at bbpress , it might be helpful:
https://www.ads-software.com/extend/plugins/bbpress/
Use && instead of || , so it becomes :
!is_page( 17 ) && !is_home()I don’t think there is a syntax error . Can u tell us what u r trying to achieve ??
Try adding this :
$_month = date('F'); $args = array('post_type'=>'marks-schedule','category_name'=>$_month ,'posts_per_page'=>4,);
and the rest will be the same .
If u have a category for each month , u can try saving the value of date(‘F’) in a variable and sending it directly to the query .
Forum: Fixing WordPress
In reply to: If is category id not workingsorry , I wrote a wrong array of categories , try it now:
<?php if (is_category( array( 3,7,18,28 ) )) {$category = get_the_category(); if($category[0]){ echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>'; } } ?>
Forum: Fixing WordPress
In reply to: If is category id not workingthe if statement shouldn’t be followed by a semi-column .
U can try using this snippet :<?php if (is_category( array( '3,7,18,28' ) )) {$category = get_the_category(); if($category[0]){ echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>'; } } ?>
Forum: Fixing WordPress
In reply to: If is category id not workingI think u need to use an if statement over there ,
is_category() is returning true or false , but it is not used .Forum: Fixing WordPress
In reply to: table in postcheck this plugin it might help :
WP Table ReloadedForum: Plugins
In reply to: Posts auto assigned to categories !!Ok , i will trace the service again . Thanks for your help
Forum: Fixing WordPress
In reply to: How can I remove this link?the code u put displays a link to the category , so remove it if you don’t want the link to show and if you just want the name of the category then replace it with :
echo $term->name;Forum: Plugins
In reply to: Posts auto assigned to categories !!it reads rss feeds and inserts the posts into the database . The posts are assigned to categories using the categoryID so everypost should be in one category only .
Forum: Plugins
In reply to: A complex problem with displaying custom posts using parameters from $_GETI think u can try to change the names of the parameters in the url to be different from the names of the categories so use countryValue or countryName instead of countries . This way u can avoid this issue .